Code

Fixed typo
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 23 Nov 2007 11:37:30 +0000 (11:37 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 23 Nov 2007 11:37:30 +0000 (11:37 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7871 594d385d-05f5-0310-b6e9-bd551577e9d8

include/php_setup.inc

index a9afd8377c0fe747598a433392d8168cbc018621..3a047fd64417e367a643993bf0a299e02a19e853 100644 (file)
@@ -57,7 +57,7 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline)
   }
   
   /* Send all errors to logging class, except "Ldap : No such object" messages*/
-  if(@class_exists("log") && !preg_match("/No such object/",$message)){
+  if(@class_exists("log") && !preg_match("/No such object/",$errstr)){
     new log("debug","all",$errfile,array(),"Type:".$errno.", Message:".$errstr.", File:".$errfile.", Line: ".$errline);
   }