Code

Removed logging from management class, logging is done by the plugin class
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 23 May 2007 06:50:04 +0000 (06:50 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 23 May 2007 06:50:04 +0000 (06:50 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6441 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/departments/class_departmentManagement.inc

index a6e2fd9027d6ec572dfb80ede7dfbc57d7ec1ec1..7c580063c794b0ef4ba8a6ceadcb36274a175bf3 100644 (file)
@@ -193,7 +193,6 @@ class departmentManagement extends plugin
           $this->deptabs->set_acl_base();
           $this->deptabs->delete ();
           $this->deptabs = NULL;
-          gosa_log ("Department object'".$this->dn."' has been removed");
         } else {
           print_red (_("You have no permission to remove this department."));
         }
@@ -261,7 +260,6 @@ class departmentManagement extends plugin
       $acl = $this->ui->get_permissions($this->dn,"department/department");
       if(preg_match("/d/",$acl)){
         $this->remove_from_parent();
-        gosa_log ("Department object'".$this->dn."' has been removed");
       } else {
         print_red (_("You have no permission to remove this department."));
       }
@@ -367,7 +365,6 @@ class departmentManagement extends plugin
       if ($this->dn != "new"){
         del_lock ($this->dn);
       }
-      gosa_log ("Department object'".$this->dn."' has been saved");
       unset ($this->deptabs);
       $this->deptabs= NULL;
       unset ($_SESSION['objectinfo']);