Code

Updated netatlk plugin, to handle posts correctly
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 14 Jul 2010 07:03:23 +0000 (07:03 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 14 Jul 2010 07:03:23 +0000 (07:03 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18996 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/netatalk/personal/netatalk/class_netatalk.inc

index 533e2125556d4796e310ecfe8db07a5bb405a047..29dda2f001c6f2e2ef5dc2aaf88656e290b8ac1e 100644 (file)
@@ -203,7 +203,7 @@ class netatalk extends plugin {
     /* Assign attributes 
      */
     foreach ($this->smarty_attributes as $val) {
-      $smarty->assign("$val", $this-> $val);
+      $smarty->assign("$val", set_post($this-> $val));
     }
 
     /* Assign ACLs 
@@ -313,7 +313,7 @@ class netatalk extends plugin {
       foreach($this->post_attributes as $acl => $val) {
         if(!preg_match("/w/",$this->getacl($acl))) continue;
         if (isset ($_POST[$val])) {
-          $this->$val = $_POST[$val];
+          $this->$val = get_post($val);
         } else {
           $this->$val = "";
         }