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

@ -20,7 +20,7 @@ if($action == ''){
AND d.bereich='ADB'");
$row_bearb = $result_bearb->fetch_array();
if($row_bearb[Anz] > 0){
if($row_bearb['Anz'] > 0){
$smarty->assign('menu_admin_bearb', "1");
}
@ -44,9 +44,9 @@ if($action == ''){
while ($row = $result->fetch_array()){
array_push($table_data1, array(
'beschreibung' => $row[beschreibung],
'dateiname' => $row[dateiname],
'target' => $row[target]
'beschreibung' => $row['beschreibung'],
'dateiname' => $row['dateiname'],
'target' => $row['target']
)
);
}
@ -71,9 +71,9 @@ if($action == ''){
while ($row2 = $result2->fetch_array()){
array_push($table_data2, array(
'beschreibung' => $row2[beschreibung],
'dateiname' => $row2[dateiname],
'target' => $row2[target]
'beschreibung' => $row2['beschreibung'],
'dateiname' => $row2['dateiname'],
'target' => $row2['target']
)
);
}
@ -98,9 +98,9 @@ if($action == ''){
while ($row3 = $result3->fetch_array()){
array_push($table_data3, array(
'beschreibung' => $row3[beschreibung],
'dateiname' => $row3[dateiname],
'target' => $row3[target]
'beschreibung' => $row3['beschreibung'],
'dateiname' => $row3['dateiname'],
'target' => $row3['target']
)
);
}
@ -133,4 +133,4 @@ if($action == 'suche'){
$smarty->assign('action', "$action");
$smarty->display("$template/$templatename");
?>
?>