From: Gunnar Wrobel
Date: Wed, 29 Apr 2009 08:21:56 +0000 (+0200) Subject: Remove the matching for the escaped '*' again. This was incorrect. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0553f4b20ee649966d1e87b8a75b0b100e259215;p=horde.git Remove the matching for the escaped '*' again. This was incorrect. --- diff --git a/framework/Kolab_Server/lib/Horde/Kolab/Server/Test.php b/framework/Kolab_Server/lib/Horde/Kolab/Server/Test.php index a461fa689..94dae0040 100644 --- a/framework/Kolab_Server/lib/Horde/Kolab/Server/Test.php +++ b/framework/Kolab_Server/lib/Horde/Kolab/Server/Test.php @@ -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)