kleine constant Fehler geändert

This commit is contained in:
aschwarz
2023-02-17 14:13:42 +01:00
parent 366b1d22de
commit 7de948b740
5 changed files with 45 additions and 45 deletions

View File

@ -20,7 +20,7 @@ $anm_schluss = $db->query("SELECT DATE_Format(anmeldeschluss, '%d.%m.%Y um %H:%i
$row_schluss = $anm_schluss->fetch_array(); // Herausfinden des Beginn- Schlussdatums
$a = strtotime ($heute_format); //Umrechnung des Fristgrenztages in eine Zahl
$b = strtotime ($row_schluss[enddatum]); // Umrechnung des Enddatums in eine Zahl
$b = strtotime ($row_schluss['enddatum']); // Umrechnung des Enddatums in eine Zahl
# Wenn Erstanträge abgesendet wurden, dürfen keine Stellen mehr vorgemerkt werden
$res2 = $db->query("SELECT distinct status
@ -29,7 +29,7 @@ $res2 = $db->query("SELECT distinct status
LIMIT 1");
$stud_status = $res2->fetch_array();
if($stud_status[status] != '0'){
if($stud_status['status'] != '0'){
if ($a <= $b){
echo "
@ -285,4 +285,4 @@ echo "
</body>
</html>";
$result_tmp1 = $db->query("DELETE FROM stan_tmp_check_data WHERE uid='$uid1'");
?>
?>