diff options
author | Gunnar Wrobel <wrobel@pardus.de> | 2010-03-30 09:26:44 (GMT) |
---|---|---|
committer | Gunnar Wrobel <wrobel@pardus.de> | 2010-03-30 09:26:44 (GMT) |
commit | facc3143d1c920e1935c6a79ad090a1c59508c6a (patch) | |
tree | 679da1fdfc2019c76540dbdd20bd648d55459d55 /lib | |
parent | 5acf7990487c4641081c17149b4c89980c0b4b82 (diff) | |
download | perl-Kolab-facc3143d1c920e1935c6a79ad090a1c59508c6a.tar.gz |
kolab/issue4275 (LDAP.pm quota error)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kolab/LDAP.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kolab/LDAP.pm b/lib/Kolab/LDAP.pm index 2f36c89..ba8f44c 100644 --- a/lib/Kolab/LDAP.pm +++ b/lib/Kolab/LDAP.pm @@ -585,7 +585,7 @@ sub createObject if( $quota != $oldquota ) { Kolab::Cyrus::setQuota($cyrus, $uid, $quota*1024, ($p eq 'sf' ? 1 : 0)); if( $quota == 0 ) { - quotaDelete{$guid}; + quotaDelete($guid); } else { quotaStore($guid, $quota); } |