From 9425bae04acbd5612a46ea2bb863ef9ef185d633 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 26 Sep 2007 09:38:22 +0000 Subject: [PATCH] If group->application is new, then do not warn that release / is not available git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@7409 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/groups/class_groupApplication.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/admin/groups/class_groupApplication.inc b/plugins/admin/groups/class_groupApplication.inc index 9b2efd405..a75676068 100644 --- a/plugins/admin/groups/class_groupApplication.inc +++ b/plugins/admin/groups/class_groupApplication.inc @@ -931,8 +931,9 @@ class appgroup extends plugin $r = $tmp[$k]; $this->FAIrelease = $k; $base = $r; - - print_red(sprintf(_("Can't resolve the release name '%s', setting release name to '%s'. Possibly the objects base has changed."),$old_r,$k)); + if($old_r != "/"){ + print_red(sprintf(_("Can't resolve the release name '%s', setting release name to '%s'. Possibly the objects base has changed."),$old_r,$k)); + } } $base = preg_replace("/ou=apps,.*$/","ou=apps,".$this->curbase,$base); -- 2.30.2