diff --git a/content/bild.php b/content/bild.php index bf7d4d8a8..4ae2180c8 100644 --- a/content/bild.php +++ b/content/bild.php @@ -24,18 +24,28 @@ // Aufruf mit db_add_param($_GET['person_id'], FHC_INTEGER); if($result = $db->db_query($qry)) { if($row = $db->db_fetch_object($result)) $cTmpHEX=$row->foto; } } +elseif(isset($_GET['src']) && $_GET['src']=='akte' && isset($_GET['person_id'])) +{ + $qry = "SELECT inhalt as foto FROM public.tbl_akte WHERE person_id=".$db->db_add_param($_GET['person_id'], FHC_INTEGER)." AND dokument_kurzbz='Lichtbil'"; + if($result = $db->db_query($qry)) + { + if($row = $db->db_fetch_object($result)) + $cTmpHEX=$row->foto; + } +} + //Header fuer Bild schicken header("Content-type: image/gif"); //base64 Werte in Zeichen umwandeln und ausgeben diff --git a/vilesci/fhausweis/bildpruefung.php b/vilesci/fhausweis/bildpruefung.php index 83cb3c313..45755fd49 100755 --- a/vilesci/fhausweis/bildpruefung.php +++ b/vilesci/fhausweis/bildpruefung.php @@ -112,7 +112,20 @@ if(isset($_POST['person_id'])) $text .= "Bitte Laden Sie ein entsprechendes Profilbild im CIS unter 'Mein CIS'->'Profil' hoch.\n"; $text .= "\n"; $text .= "Herzlichen Dank\n"; - $text .= "Fachhochschule Technikum Wien"; + $text .= "Fachhochschule Technikum Wien\n"; + $text .= "\n------------------\n\n"; + if($person->geschlecht=='m') + $text .= "Dear Mr ".$person->vorname.' '.$person->nachname.",\n\n"; + else + $text .= "Dear Ms ".$person->vorname.' '.$person->nachname.",\n\n"; + $text .= "Your profile photograph has been checked and does not fulfil the photo criteria.\n"; + $text .= "The current criteria can be found under the following link:\n"; + $text .= "https://cis.technikum-wien.at/cms/content.php?content_id=6174\n"; + $text .= "\n"; + $text .= "Please upload a suitable profile photo in the CIS under 'My CIS'->'Profile'.\n"; + $text .= "\n"; + $text .= "Thank you\n"; + $text .= "University of Applied Sciences Technikum Wien"; $mail = new mail($to, $from, $subject, $text); if($mail->send()) @@ -240,7 +253,7 @@ if($result = $db->db_query($qry))
- +