From: hickert Date: Tue, 19 Sep 2006 10:41:55 +0000 (+0000) Subject: Fixed app creation. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e9033939c17cc315325b5721cab2c32c406684da;p=gosa.git Fixed app creation. When releasemanagement was disabled, apps were created on the base, without ou=apps, git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4727 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/applications/class_applicationManagement.inc b/plugins/admin/applications/class_applicationManagement.inc index aebe706da..5c88b5756 100644 --- a/plugins/admin/applications/class_applicationManagement.inc +++ b/plugins/admin/applications/class_applicationManagement.inc @@ -401,12 +401,12 @@ class applicationManagement extends plugin $Releases = $this->getReleases($base); if(!$this->enableReleaseManagement){ - $use_base = $base; + $use_base = "ou=apps,".$base; }else{ if(isset($Releases[$release])){ $use_base = $release; }else{ - $use_base = $base; + $use_base = "ou=apps,".$base; } }