Code

Removed debug stuff
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 27 Jul 2011 06:39:02 +0000 (06:39 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 27 Jul 2011 06:39:02 +0000 (06:39 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20953 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/functions.inc

index dc61ad92d3c292fb4194bd346dc9c7e4365ad7b8..87b29d32fd629ea16e1c0cf43cae2d5212c4ed03 100644 (file)
@@ -3941,10 +3941,8 @@ function gosa_fopen($filename, $mode)
 
 /*\brief    Our own in_array method which defaults to a strict mode.
  */
-function in_array_strict($needle, $haystack, $strict = TRUE){
-    if(!$strict){
-        syslog(1, "!");
-    }
+function in_array_strict($needle, $haystack, $strict = TRUE)
+{
     return(in_array($needle, $haystack, $strict));
 }