From a1d2eb51a7106b7efad3f5f5ac3e15c315ced8c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Tue, 17 Nov 2020 17:49:32 +0100 Subject: [PATCH] Loading Name of a Person doesnt load all person Data --- include/person.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/person.class.php b/include/person.class.php index b220bb55b..328cc413c 100644 --- a/include/person.class.php +++ b/include/person.class.php @@ -374,7 +374,7 @@ class person extends basis_db $this->errormsg = 'Staatsbuergerschaft darf nicht laenger als 3 Zeichen sein'; return false; } - + //Pruefen ob das Geburtsdatum mit der SVNR uebereinstimmt. if ($this->svnr != '' && $this->gebdatum != '') { @@ -1022,7 +1022,7 @@ class person extends basis_db public function getFullNameFromBenutzer($uid) { $qry = "SELECT - * + vorname, nachname FROM public.tbl_person JOIN public.tbl_benutzer USING(person_id)