From: hickert Date: Thu, 30 Nov 2006 12:10:29 +0000 (+0000) Subject: All snapshots listed can be deleted. Else they weren't shown. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4157f2fc436d1ba0d9db2e1c2195f84afd10a9a7;p=gosa.git All snapshots listed can be deleted. Else they weren't shown. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5274 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_plugin.inc b/include/class_plugin.inc index 72793b3c7..c32eca5f0 100644 --- a/include/class_plugin.inc +++ b/include/class_plugin.inc @@ -1128,14 +1128,9 @@ class plugin $ui = get_userinfo(); $old_dn = $this->dn; $this->dn = $dn; - - if($this->acl_is_removeable() && $this->acl_is_createable()){ - $ldap = $this->config->get_ldap_link(); - $ldap->cd($this->config->current['BASE']); - $ldap->rmdir_recursive($dn); - }else{ - print_red (_("You are not allowed to delete this snapshot!")); - } + $ldap = $this->config->get_ldap_link(); + $ldap->cd($this->config->current['BASE']); + $ldap->rmdir_recursive($dn); $this->dn = $old_dn; }