From: janw Date: Fri, 27 May 2005 14:06:25 +0000 (+0000) Subject: Added some comments. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b917057602435fd58c9d2d7bdaf32b2a7b170ae3;p=gosa.git Added some comments. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@483 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/connectivity/class_proxyAccount.inc b/plugins/personal/connectivity/class_proxyAccount.inc index b4766e4dc..06a6c0090 100644 --- a/plugins/personal/connectivity/class_proxyAccount.inc +++ b/plugins/personal/connectivity/class_proxyAccount.inc @@ -48,9 +48,13 @@ class proxyAccount extends plugin foreach (array("F", "T", "B", "N") as $val){ if (is_integer(strpos($this->gosaProxyAcctFlags, "$val"))) { $smarty->assign("filter$val", "checked"); + + // Create state variable for checkbox (Used in proxy.tpl) $smarty->assign($val."state", ""); } else { $smarty->assign("filter$val", ""); + + // Create state variable for checkbox (Used in proxy.tpl) $smarty->assign($val."state", "disabled"); } }