From 4d585ba482488b2fa432c9ca559d7ff2f0461f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Thu, 6 Mar 2014 14:31:37 +0000 Subject: [PATCH] Fehler bei der Laengenpruefung von UIDs behoben --- include/student.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/student.class.php b/include/student.class.php index edb4ab6c3..677a2e8ec 100644 --- a/include/student.class.php +++ b/include/student.class.php @@ -108,9 +108,9 @@ class student extends benutzer */ protected function validate() { - if(mb_strlen($this->uid)>16) + if(mb_strlen($this->uid)>32) { - $this->errormsg = 'UID darf nicht laenger als 16 Zeichen sein'; + $this->errormsg = 'UID darf nicht laenger als 32 Zeichen sein'; return false; } if($this->uid=='')