Remove the matching for the escaped '*' again. This was incorrect.
authorGunnar Wrobel <p@rdus.de>
Wed, 29 Apr 2009 08:21:56 +0000 (10:21 +0200)
committerGunnar Wrobel <p@rdus.de>
Wed, 29 Apr 2009 08:21:56 +0000 (10:21 +0200)
framework/Kolab_Server/lib/Horde/Kolab/Server/Test.php

index a461fa6..94dae00 100644 (file)
@@ -380,7 +380,7 @@ class Horde_Kolab_Server_Test extends Horde_Kolab_Server_Ldap
                     switch ($filter['log']) {
                     case '=':
                         $value = $element['data'][$filter['att']];
-                        if ((($filter['val'] == '*' || $filter['val'] == '\2a')
+                        if ((($filter['val'] == '*')
                              && !empty($value))
                             || $value == $filter['val']
                             || (is_array($value)