thomascube
2011-08-16 94ce75255df599b4ea3f8232cb9cdc12efda2507
Correctly quote group filter

1 files modified
2 ■■■ changed files
program/include/rcube_ldap.php 2 ●●● patch | view | raw | blame | history
program/include/rcube_ldap.php
@@ -1314,7 +1314,7 @@
        $base_dn = $this->groups_base_dn;
        $contact_dn = base64_decode($contact_id);
        $filter = "(member=$contact_dn)";
        $filter = strtr("(member=$contact_dn)", array('\\' => '\\\\'));
        $this->_debug("C: Search [$filter][dn: $base_dn]");