Code

Added notification
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 21 Apr 2011 08:35:28 +0000 (08:35 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 21 Apr 2011 08:35:28 +0000 (08:35 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20764 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/goto-ng/admin/newConfigManagement/class_newConfigManagement.inc

index d703db5c1fbb96a80baa627af246a3e4b8ea163d..028755233a91a82751c6ed2921651c17cfb65baf 100644 (file)
@@ -577,10 +577,12 @@ class newConfigManagement extends plugin
     function getUsedNamesForPath($path)
     {
         $item = $this->dataModel->getItemByPath($path);
+
         $names = array();
         foreach($item['children'] as $path => $data){
             $names[] = $data['name'];
         }
+        Echo "Fix getUsedNamesForPath it should depend on the type, edit/create and the edited item!";
         return($names);
     }