From: cajus Date: Wed, 16 Jan 2008 09:18:41 +0000 (+0000) Subject: Remove static - not good for php4 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=735cad1e0daa2adbfc7f6566570b3b1279e42705;p=gosa.git Remove static - not good for php4 git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@8384 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_ldap.inc b/include/class_ldap.inc index 448e85fc9..0e1e909b5 100644 --- a/include/class_ldap.inc +++ b/include/class_ldap.inc @@ -96,7 +96,7 @@ class LDAP{ /* Function to fix problematic characters in DN's that are used for search requests. I.e. member=.... */ - static function prepare4filter($dn) + function prepare4filter($dn) { return normalizeLdap(preg_replace('/\\\\/', '\\\\\\', @LDAP::fix($dn))); }