summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 702045b)
raw | patch | inline | side by side (parent: 702045b)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 27 Jul 2011 06:39:02 +0000 (06:39 +0000) | ||
committer | hickert <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 | patch | blob | history |
index dc61ad92d3c292fb4194bd346dc9c7e4365ad7b8..87b29d32fd629ea16e1c0cf43cae2d5212c4ed03 100644 (file)
/*\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));
}