Code

Fixed a couple of errors
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 24 Jul 2008 16:07:47 +0000 (16:07 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 24 Jul 2008 16:07:47 +0000 (16:07 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12036 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/php_setup.inc
gosa-core/include/utils/class_timezone.inc
gosa-core/plugins/admin/groups/class_groupManagement.inc

index 299aceb9c0bd8385843abb4cc2c7c8fccaad9ad5..722591c8bfc124231bc75878a6cf17a332316241 100644 (file)
@@ -50,8 +50,8 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline)
       if(class_exists("log") && !preg_match("/No such object/",$errstr)){
         new log("view","error","",array(),"PHP error: $errstr ($errfile, line $errline)");
       }
+
       return;
-    }
   }
   
   /* Send all errors to logging class, except "Ldap : No such object" messages*/
index 3c382406c269f6f735fba0c7c388430df819a295..7fcd7d5ca79ca6fc612159944821d8bb4f43c68c 100644 (file)
@@ -38,7 +38,7 @@ class timezone {
     }
 
     /* Is there a timezone configured in the gosa configuration (gosa.conf) */
-    if ($config->get_cfg_value("timezone") != "")
+    if ($config->get_cfg_value("timezone") != ""){
 
       /* Get zonename */
       $tz = $config->get_cfg_value("timezone");
index 38ff24b241628f7977fe4e01d73b973621ef1aad..decaf8053f424d7a02b1408e1bb2e57313201c46 100644 (file)
@@ -44,7 +44,7 @@ class groupManagement extends plugin
     $this->ui     = &$ui;
 
     /* Copy & Paste enabled ?*/
-    if($this->config->get_value("enablecopypaste") == "true"){
+    if($this->config->get_cfg_value("enablecopypaste") == "true"){
       $this->CopyPasteHandler = new CopyPasteHandler($this->config);
     }