kleine constant Fehler geändert

This commit is contained in:
aschwarz
2023-02-24 09:11:35 +01:00
parent ac75a3e988
commit 5a591ee6f3
12 changed files with 51 additions and 51 deletions

View File

@ -227,18 +227,18 @@ a{
WHERE dst_id ='$row[dst_id]'");
$row6 = $result6->fetch_array();
if($row5[name] != '' and $row6[bez] == ''){
$bezeichnung = $row5[name];
$ort = $row5[ort];
if($row5['name'] != '' and $row6['bez'] == ''){
$bezeichnung = $row5['name'];
$ort = $row5['ort'];
}
if($row5[name] == '' and $row6[bez] != ''){
$bezeichnung = $row6[bez];
$ort = $row6[ort];
if($row5['name'] == '' and $row6['bez'] != ''){
$bezeichnung = $row6['bez'];
$ort = $row6['ort'];
}
if($row5[name] == '' and $row6[bez] == ''){
if($row5['name'] == '' and $row6['bez'] == ''){
$bezeichnung = '<i>Zeitraum vorgemerkt</i>';
$ort = '';
}
@ -250,7 +250,7 @@ a{
}
$block = get_block($row[saaid], $jahrgang);
$block = get_block($row['saaid'], $jahrgang);
$result_zuw0 = $db->query("SELECT 1,wagsid
FROM stan_ag_standort_wunsch
@ -396,4 +396,4 @@ a{
</html>";
} // Ende Action script
?>
?>