Code

Fixed lsit of available tempaltes
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 7 Sep 2006 04:19:15 +0000 (04:19 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 7 Sep 2006 04:19:15 +0000 (04:19 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4611 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/users/class_userManagement.inc

index d2aea37b4d6e90762e6f5a3336e2f7d7b8325014..8987b6a76919080739e7b11a7e59406276ed186a 100644 (file)
@@ -433,7 +433,7 @@ class userManagement extends plugin
         $acl = $ui->get_permissions("cn=dummy,".$this->DivListUsers->selectedBase,"users/user")       ; 
  
         /* If creation of a new user is allowed, append this template */
-        if (preg_match("/cw/",$acl)){
+        if (preg_match("/r/",$acl)){
           
           /* Search all templates from the current dn */
           $ldap->cd (get_people_ou().$value);
@@ -462,6 +462,7 @@ class userManagement extends plugin
 
     /* Check selected options for template */
     if (isset($_POST['template_continue'])){
+      $message = array();
       if(!isset($_POST['template']) || (empty($_POST['template']))){
         $message[] = _("Please select a valid template.");
       }
@@ -486,7 +487,6 @@ class userManagement extends plugin
         $smarty->assign("templates",$this->templates);
         $smarty->assign("got_uid",$this->got_uid);
         $smarty->assign("edit_uid",false);
-
         return($smarty->fetch(get_template_path('template.tpl', TRUE)));
 
       }