From: hickert Date: Tue, 5 Sep 2006 04:10:46 +0000 (+0000) Subject: Only store application scripts if ! empty X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b3876ee66d187350d11ec575fec470ee27760527;p=gosa.git Only store application scripts if ! empty git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4587 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/applications/class_applicationGeneric.inc b/plugins/admin/applications/class_applicationGeneric.inc index 967eaaf63..94c6a831f 100644 --- a/plugins/admin/applications/class_applicationGeneric.inc +++ b/plugins/admin/applications/class_applicationGeneric.inc @@ -398,6 +398,9 @@ class application extends plugin /* Save to LDAP */ function save() { + /* Get application script without header part, to check if we must save the script itself */ + $script = preg_replace('/.*### END HEADER ###/s', '', $this->gotoLogonScript); + plugin::save(); $this->attrs["gosaApplicationIcon"]= $this->gosaApplicationIcon; @@ -407,11 +410,23 @@ class application extends plugin $a= $ldap->fetch(); if (count($a)){ + + /* Remove gotoLogonScript if it is empty */ + if(empty($script)) { + $this->attrs['gotoLogonScript'] = array(); + } + $ldap->cd($this->dn); $this->cleanup(); $ldap->modify ($this->attrs); $this->handle_post_events("modify"); } else { + + /* Remove gotoLogonScript if it is empty */ + if(empty($script)) { + unset($this->attrs['gotoLogonScript']); + } + $ldap->cd($this->config->current['BASE']); $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn)); $ldap->cd($this->dn);