Code

Fixed : Don't ask for Templates when creating a Template
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 25 Nov 2005 08:45:47 +0000 (08:45 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 25 Nov 2005 08:45:47 +0000 (08:45 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2059 594d385d-05f5-0310-b6e9-bd551577e9d8

TODO
plugins/admin/users/class_userManagement.inc

diff --git a/TODO b/TODO
index 351921e38e539860987cd19ef08e4085f48c0487..f768179720b92ae5637e169cb018a87caa9cf918 100644 (file)
--- a/TODO
+++ b/TODO
@@ -5,8 +5,6 @@ Things to fix before 2.4:
 
 * Fix fai -> package lists -> add -> divlist which is totaly broken
 
-* Don't ask for Templates when creating a Template
-
 
 Target for 2.5:
 ===============
index 623d7f3bb90ec66bcea75c9efc871b4c3c6ef9ad..5226698b41bb6e37fe1eb2872e980e6ba8b09f3a 100644 (file)
@@ -521,7 +521,8 @@ class userManagement extends plugin
       }
 
       /* Use template if there are any of them */
-      if ((count($this->templates) && !isset($_POST['new_template']))||($s_action=="create_user_from_tpl")){
+  
+      if ((count($this->templates) && ($s_action!='new_tpl'))||($s_action=="create_user_from_tpl")){
         foreach(array("sn", "givenName", "uid", "got_uid", "templates") as $attr){
           $smarty->assign("$attr", $this->$attr);
         }