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

@ -56,12 +56,12 @@ if($action == ''){
ORDER BY datum DESC, status DESC
LIMIT 1");
$row2 = $result2->fetch_array();
if($row2[status] == '7'){
if($row2['status'] == '7'){
array_push($table_data1, array(
'vid' => $row[vid],
'betreff' => $row[betreff],
'erfass_dat_form' => $row[erfass_dat_form],
'sitzungsdat' => $row1[datum_form],
'vid' => $row['vid'],
'betreff' => $row['betreff'],
'erfass_dat_form' => $row['erfass_dat_form'],
'sitzungsdat' => $row1['datum_form'],
'dateiname' => 'ausschuss_ansicht_entschieden.php'
)
);
@ -76,12 +76,12 @@ if($action == ''){
ORDER BY datum DESC, status DESC
LIMIT 1");
$row2 = $result2->fetch_array();
if($row2[status] == '8'){
if($row2['status'] == '8'){
array_push($table_data1, array(
'vid' => $row[vid],
'betreff' => $row[betreff],
'erfass_dat_form' => $row[erfass_dat_form],
'sitzungsdat' => $row1[datum_form],
'vid' => $row['vid'],
'betreff' => $row['betreff'],
'erfass_dat_form' => $row['erfass_dat_form'],
'sitzungsdat' => $row1['datum_form'],
'dateiname' => 'ausschuss_ansicht_entschieden.php'
)
);
@ -104,4 +104,4 @@ if($action == ''){
$smarty->assign('action', "$action");
$smarty->display("$template/$templatename");
?>
?>