From: hickert Date: Wed, 16 Apr 2008 08:29:16 +0000 (+0000) Subject: Fixed Problem with saving new ACL for a tagged department. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a122950bd62f2e2152ee4382cb8ba850102a3dba;p=gosa.git Fixed Problem with saving new ACL for a tagged department. -The detection/match routines wasn't matching correctly for departments. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10494 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_plugin.inc b/gosa-core/include/class_plugin.inc index 5fd81afbb..57fc5107d 100644 --- a/gosa-core/include/class_plugin.inc +++ b/gosa-core/include/class_plugin.inc @@ -1016,7 +1016,7 @@ class plugin foreach ($this->config->adepartments as $key => $ntag){ /* This one is bigger than our dn, its not relevant... */ - if ($len <= strlen($key)){ + if ($len < strlen($key)){ continue; }