kleine constant Fehler geändert

This commit is contained in:
aschwarz
2023-03-14 08:08:06 +01:00
parent 1bf9923edf
commit c00fb6812e
20 changed files with 163 additions and 163 deletions

View File

@ -16,26 +16,26 @@ class beteiligter {
# Erfassung noch möglich, Stellungnahme vom
# Erfassung noch möglich, noch keine Stellungnahme
if($row_bet_data[stellung_dat] != '0000-00-00 00:00:00'){
if($row_bet_data['stellung_dat'] != '0000-00-00 00:00:00'){
$status = ": Stellungnahme vom $row_bet_data[stellung_dat_form]";
}else{
$status = "";
}
$aend_dat = date("Y-m-d");
if($row_bet_data[frist_datum] >= $aend_dat AND $row_bet_data[stellung_dat] != '0000-00-00 00:00:00'){
if($row_bet_data['frist_datum'] >= $aend_dat AND $row_bet_data['stellung_dat'] != '0000-00-00 00:00:00'){
return 1;
}
if($row_bet_data[frist_datum] >= $aend_dat AND $row_bet_data[stellung_dat] == '0000-00-00 00:00:00'){
if($row_bet_data['frist_datum'] >= $aend_dat AND $row_bet_data['stellung_dat'] == '0000-00-00 00:00:00'){
return 2;
}
if($row_bet_data[frist_datum] < $aend_dat AND $row_bet_data[stellung_dat] != '0000-00-00 00:00:00'){
if($row_bet_data['frist_datum'] < $aend_dat AND $row_bet_data['stellung_dat'] != '0000-00-00 00:00:00'){
return 3;
}
if($row_bet_data[frist_datum] < $aend_dat AND $row_bet_data[stellung_dat] == '0000-00-00 00:00:00'){
if($row_bet_data['frist_datum'] < $aend_dat AND $row_bet_data['stellung_dat'] == '0000-00-00 00:00:00'){
return 4;
}
@ -77,4 +77,4 @@ class beteiligter {
}
}
?>
?>