diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-04 13:24:28 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-04 13:24:28 +0000 |
| commit | f5dd05e65ced9deb7cf23fa08d8897a7873a8ecf (patch) | |
| tree | be209b26a83ed8af679cc2300258b828f69eef70 /roundcubemail/program/include | |
| parent | f6df1b078309fbb65296df518e2ce815c93ef32e (diff) | |
- return deleted records count instead of true in ldap's delete(), fixes (#1486082)
git-svn-id: https://svn.roundcube.net/trunk@2921 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcube_ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_ldap.php b/roundcubemail/program/include/rcube_ldap.php index 71476ced7..016509cc7 100644 --- a/roundcubemail/program/include/rcube_ldap.php +++ b/roundcubemail/program/include/rcube_ldap.php @@ -546,7 +546,7 @@ class rcube_ldap extends rcube_addressbook } // end if } // end foreach - return true; + return count($dns); } |
