Kleinere Fehlerkorrekturen

This commit is contained in:
aschwarz 2023-04-24 08:08:11 +02:00
parent d9dbf93aa9
commit a68b637415
2 changed files with 5 additions and 5 deletions

View File

@ -176,7 +176,7 @@ echo "
exit;
}
if ($_POST['doz_uid'] != $row[doz_uid]) {
if ($_POST['doz_uid'] != $row['doz_uid']) {
echo"
<html>
<head>
@ -242,10 +242,10 @@ exit;
}
$passwd = md5($_POST['doz_pwd']);
if ($passwd != $row[doz_pwd]){
if ($passwd != $row['doz_pwd']){
setcookie("doz_uid1","");
setcookie("doz_uid1",$row[doz_uid]);
setcookie("doz_uid1",$row['doz_uid']);
echo "
<html>
@ -315,7 +315,7 @@ exit;
}
setcookie("doz_uid1","");
setcookie("doz_uid1",$row[doz_uid]);
setcookie("doz_uid1",$row['doz_uid']);
echo "
<meta http-equiv=\"refresh\" content=\"0; URL=index_doz.htm\">

View File

@ -85,7 +85,7 @@ case "jahr":
setcookie("jahrgang","");
setcookie("jahrgang",$_POST[jahr]);
setcookie("jahrgang",$_POST['jahr']);
echo "
<meta http-equiv=\"refresh\" content=\"0; URL=hauptframe_jahr.php\">";