kleine constant Fehler geändert

This commit is contained in:
aschwarz 2023-02-17 14:38:04 +01:00
parent 7de948b740
commit fa93ed4c91
2 changed files with 3 additions and 3 deletions

@ -163,7 +163,7 @@ $res2 = $db->query("SELECT distinct status
LIMIT 1");
$stud_status = $res2->fetch_array();
if($stud_status[status] == '0'){
if($stud_status['status'] == '0'){
echo "

@ -336,7 +336,7 @@ $pdf->SetY($pos);
$data[3]['T_COLOR'] = array($rr,240,240);
$data[3]['BG_COLOR'] = array($rr,100,135);
*/
if($row_prio1[block] != ''){
if($row_prio1['block'] != ''){
$data[0]['TEXT'] = "$row2[bezeichnung]";
$data[0]['T_ALIGN'] = "L"; //C=CENTER, L=LEFT, R=RIGHT, J=JUSTIFY
@ -439,4 +439,4 @@ $pdf->MultiCell(0, 5, "Datum, Unterschrift", 0, 'L');
$pdf->Output();
?>
?>