Code

Systems Workstation Startup
[gosa.git] / plugins / admin / systems / class_glpiManufacturer.inc
index 9b92e4016babcb5f494a24d73641235ac1eabcd1..e0a9cfa9a2e3d584908dbfc00609ed0ffdb0a392 100644 (file)
@@ -2,11 +2,6 @@
 
 class glpiManufacturer extends plugin
 {
-  /* CLI vars */
-  var $cli_summary= "Manage server basic objects";
-  var $cli_description= "Some longer text\nfor help";
-  var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
-
   /* attribute list for save action */
   var $ignore_account= TRUE;
   var $attributes= array("name","type","address","website","phonenumber","comments","deleted","fax","email");
@@ -28,9 +23,9 @@ class glpiManufacturer extends plugin
   var $email      ="";
   var $ID         =-1;
 
-  function glpiManufacturer($config, $dn= NULL)
+  function glpiManufacturer($config, $dn= NULL, $parent= NULL)
   {
-    plugin::plugin ($config, $dn);
+    plugin::plugin ($config, $dn, $parent);
     $this->ui = get_userinfo();  
   }
 
@@ -159,7 +154,7 @@ class glpiManufacturer extends plugin
   {
     foreach($this->attributes as $attr){
       if(isset($_POST[$attr])){
-        $this->$attr = $_POST[$attr];
+        $this->$attr = stripslashes($_POST[$attr]);
       }
     }
   }