summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 25a0e64)
raw | patch | inline | side by side (parent: 25a0e64)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 14 Jul 2010 07:03:23 +0000 (07:03 +0000) | ||
committer | hickert <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 | patch | blob | history |
diff --git a/gosa-plugins/netatalk/personal/netatalk/class_netatalk.inc b/gosa-plugins/netatalk/personal/netatalk/class_netatalk.inc
index 533e2125556d4796e310ecfe8db07a5bb405a047..29dda2f001c6f2e2ef5dc2aaf88656e290b8ac1e 100644 (file)
/* Assign attributes
*/
foreach ($this->smarty_attributes as $val) {
- $smarty->assign("$val", $this-> $val);
+ $smarty->assign("$val", set_post($this-> $val));
}
/* Assign ACLs
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 = "";
}