diff options
author | alecpl <alec@alec.pl> | 2011-08-12 06:36:34 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-08-12 06:36:34 +0000 |
commit | a170304013fb433600df9d39841527bfaa78a3c6 (patch) | |
tree | 28f5052d09ff4800c29ba9f8b873d7e2f866d7de /program | |
parent | 0f1faec39271130500b836d8c81ce060fc5cbc07 (diff) |
- Remove double semicolon
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index 76217acc1..56723c3db 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -1090,7 +1090,7 @@ class rcube_ldap extends rcube_addressbook $dc = 'dc='.strtr($d, array('.' => ',dc=')); $replaces = array('%dc' => $dc, '%d' => $d, '%fu' => $fu, '%u' => $u); - $this->groups_base_dn = strtr($this->groups_base_dn, $replaces);; + $this->groups_base_dn = strtr($this->groups_base_dn, $replaces); } $base_dn = $this->groups_base_dn; |