diff options
author | Gunnar Wrobel <wrobel@pardus.de> | 2010-06-27 06:53:57 (GMT) |
---|---|---|
committer | Gunnar Wrobel <wrobel@pardus.de> | 2010-06-27 06:53:57 (GMT) |
commit | f86ad0481ba3147e55bb1e7d0b13a3b60d1302ee (patch) | |
tree | fcd33196563988d44d42d796c4ecd3609c9c7dd5 /lib | |
parent | 08aea6f0137411e9ef84a7e4d18f8e2094076c56 (diff) | |
download | perl-Kolab-f86ad0481ba3147e55bb1e7d0b13a3b60d1302ee.tar.gz |
Fix hook execution, update release notes.
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 36a513d..efbe444 100644 --- a/lib/Kolab/LDAP.pm +++ b/lib/Kolab/LDAP.pm @@ -725,7 +725,7 @@ sub deleteObject closedir(DIR); foreach my $hook (@hooks) { - system($hook . ' $uid'); + system($Kolab::config{'kolab_hooksdir'} . '/delete/' . $hook . " $uid"); if ($?==0) { Kolab::log('L', "Successfully ran hook $hook for user $uid.", KOLAB_DEBUG); } else { |