Code

Added title tag
[gosa.git] / plugins / admin / systems / class_goGlpiServer.inc
index 14938f41d7d3b04022a8da9f4535169e7ab2719d..4d3418ef30647b911949f789c6f0724d7e350b06 100644 (file)
@@ -16,6 +16,7 @@ class goGlpiServer extends plugin{
 
   var $DisplayName      = "";
   var $dn               = NULL;
+  var $cn               = "";
   var $acl;
 
   var $goGlpiServerStatus ="";
@@ -159,6 +160,16 @@ class goGlpiServer extends plugin{
       foreach ($add_attrs as $name => $value){
         $command= preg_replace("/%$name/", $value, $command);
       }
+
+      /* If there are still some %.. in our command, try to fill these with some other class vars */
+      if(preg_match("/%/",$command)){
+        $attrs = get_object_vars($this);
+        foreach($attrs as $name => $value){
+          if(!is_string($value)) continue;
+          $command= preg_replace("/%$name/", $value, $command);
+        }
+      }
+
       if (check_command($command)){
         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,
             $command, "Execute");