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

@ -142,18 +142,18 @@ while ($row2 = $result->fetch_array()){
WHERE dst_id ='$row[bezeichnung]'");
$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 = '';
}
@ -206,4 +206,4 @@ $result_tmp1 = $db->query("DELETE FROM stan_tmp_check_data3 WHERE uid='$row2[uid
</body>
</html>";
?>
?>