Code

Updated class plugin
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 22 Jul 2010 13:39:05 +0000 (13:39 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 22 Jul 2010 13:39:05 +0000 (13:39 +0000)
-Updated post handling
-Added location to script execution vars

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19049 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_plugin.inc

index 62526a2c350fa1be2d273c02827cdd0fefc8879c..bb5d80135f421177af7715334feaae413062f08e 100644 (file)
@@ -336,10 +336,11 @@ class plugin
       if (isset ($_POST["$val"]) && $this->acl_is_writeable($val)){
   
         /* Check for modifications */
-        $data= $this->$val = get_post($val);
+        $data= get_post($val);
         if ($this->$val != $data){
           $this->is_modified= TRUE;
         }
+        $this->$val = $data;
     
         /* Okay, how can I explain this fix ... 
          * In firefox, disabled option fields aren't selectable ... but in IE you can select these fileds. 
@@ -1526,7 +1527,7 @@ class plugin
   {
     global $config;
     $command = $config->configRegistry->getPropertyValue(get_class($plugin),$cmd);
-    
+   
     if ($command != ""){
 
       // Walk trough attributes list and add the plugins attributes. 
@@ -1538,6 +1539,7 @@ class plugin
       $ui = get_userinfo();
       $addAttrs['callerDN']=$ui->dn;
       $addAttrs['dn']=$plugin->dn;
+      $addAttrs['location']=$config->current['NAME'];
 
       // Sort attributes by length, ensures correct replacement
       $tmp = array();