From 42d3b5bfa811fea9d709d767bd8774ab6959547e Mon Sep 17 00:00:00 2001 From: Andreas Moik Date: Wed, 22 Jun 2016 12:02:12 +0200 Subject: [PATCH] added missing db parameters to prestudent->load_studentlehrverband --- include/prestudent.class.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/prestudent.class.php b/include/prestudent.class.php index b4ee94146..0ab9e8edb 100755 --- a/include/prestudent.class.php +++ b/include/prestudent.class.php @@ -1961,6 +1961,10 @@ class prestudent extends person $this->semester = $row->semester; $this->verband = $row->verband; $this->gruppe = $row->gruppe; + $this->updateamum = $row->updateamum; + $this->updatevon = $row->updatevon; + $this->insertamum = $row->insertamum; + $this->insertvon = $row->insertvon; return true; }