summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 429020c)
raw | patch | inline | side by side (parent: 429020c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 28 Jun 2005 11:17:25 +0000 (11:17 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 28 Jun 2005 11:17:25 +0000 (11:17 +0000) |
plugins/gofon/phoneaccount/class_phoneAccount.inc | patch | blob | history |
diff --git a/plugins/gofon/phoneaccount/class_phoneAccount.inc b/plugins/gofon/phoneaccount/class_phoneAccount.inc
index a3a489ba6e94da317d9bc46cbaa534d0ef885e82..0a9601386ec7c9856418606a92106ee48cc99018 100644 (file)
switch ($type){
case "combo":
- $str= "<select name='".$var."' ".chkacl($this->acl, "goFonMacro").">";
+ $str= "<select name='".$var."' ".chkacl($this->acl, "goFonMacro")." ".chkacl($this->acl, "goFonMacro").">";
foreach(split(":",$default) as $choice){
if($choosen==$choice){
$str.= "\n<option value='".$choice."' selected>".$choice." </option>";
case "bool":
if(!$choosen){
- $str="\n<input type='checkbox' name='".$var."' value='1'>";
+ $str="\n<input type='checkbox' name='".$var."' value='1' ".chkacl($this->acl, "goFonMacro")." >";
}else{
- $str="\n<input type='checkbox' name='".$var."' value='1' checked>";
+ $str="\n<input type='checkbox' name='".$var."' value='1' checked ".chkacl($this->acl, "goFonMacro").">";
}
$macrotab.= "<td colspan='2'>$str $name";
break;