From e7313edb5bb6b4cfaf08a10a4b4043fe78c10e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Wed, 6 Feb 2019 11:28:40 +0100 Subject: [PATCH] Added updateaktivam to User Load --- include/benutzer.class.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/benutzer.class.php b/include/benutzer.class.php index 3a17b0386..102c28a4b 100644 --- a/include/benutzer.class.php +++ b/include/benutzer.class.php @@ -30,6 +30,8 @@ class benutzer extends person public $bn_ext_id; public $aktivierungscode; public $result = array(); + public $updateaktivam; + public $updateaktivvon; /** * Konstruktor - Uebergibt die Connection und laedt optional einen Benutzer @@ -65,6 +67,8 @@ class benutzer extends person $this->bnaktiv = $this->db_parse_bool($row->aktiv); $this->alias = $row->alias; $this->aktivierungscode = $row->aktivierungscode; + $this->updateaktivam = $row->updateaktivam; + $this->updateaktivvon = $row->updateaktivvon; if(!person::load($row->person_id)) return false;