summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f0ccffb)
raw | patch | inline | side by side (parent: f0ccffb)
author | psc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 13 Jul 2009 14:07:01 +0000 (14:07 +0000) | ||
committer | psc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 13 Jul 2009 14:07:01 +0000 (14:07 +0000) |
also check if it is in use by object groups.
- Also check for used shares if removing the share only
(and not the whole service or server)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@13926 594d385d-05f5-0310-b6e9-bd551577e9d8
- Also check for used shares if removing the share only
(and not the whole service or server)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@13926 594d385d-05f5-0310-b6e9-bd551577e9d8
trunk/gosa-plugins/goto/admin/systems/services/shares/class_goShareServer.inc | patch | blob | history |
diff --git a/trunk/gosa-plugins/goto/admin/systems/services/shares/class_goShareServer.inc b/trunk/gosa-plugins/goto/admin/systems/services/shares/class_goShareServer.inc
index 7d7b05d9a7b19bf7881c1178d6dbd2edab8586d1..f4ad3050f6fb15bed17658aa0bd0cc3c4a7dff5b 100644 (file)
$ldap = $this->config->get_ldap_link();
$ldap->cd($this->config->current['BASE']);
$cn = $ldap->getCn($this->dn);
- $ldap->search("(&(|(objectClass=posixGroup)(objectClass=posixAccount))(gotoShare=$cn|*))", array("dn"));
+ $ldap->search("(&(|(objectClass=posixGroup)(objectClass=posixAccount)(objectClass=gosaGroupOfNames))(gotoShare=$cn|*))", array("dn"));
if($ldap->count()){
/* Number of entries shown in warning */
/* Check if the share is used by someone */
$ldap = $this->config->get_ldap_link();
$ldap->cd($this->config->current['BASE']);
- $ldap->search("(|(gotoProfileServer=*|$id)(gotoShare=*|$id|*||*))", array("cn"));
+ $ldap->search("(|(gotoProfileServer=*|$id)(gotoShare=*|$id|*))", array("cn"));
if ($ldap->count() != 0){
while ($attrs= $ldap->fetch()){
$obj[$ldap->getDN()]= $attrs['cn'][0];