Skip to content
Snippets Groups Projects
Commit f93c9548 authored by Marius Burkard's avatar Marius Burkard
Browse files

- fixed typo from previous commit

parent a324af77
No related branches found
No related tags found
1 merge request!704Stable 3.1
...@@ -100,7 +100,7 @@ class page_action extends tform_actions { ...@@ -100,7 +100,7 @@ class page_action extends tform_actions {
if(is_array($policys)) { if(is_array($policys)) {
foreach( $policys as $p) { foreach( $policys as $p) {
$selected = ($p["id"] == $tmp_user["policy_id"])?'SELECTED':''; $selected = ($p["id"] == $tmp_user["policy_id"])?'SELECTED':'';
$policy_select .= "<option value='$p[id]' $selected>" . $app->functions->htmlentities(($p['policy_name']) . "</option>\r\n"; $policy_select .= "<option value='$p[id]' $selected>" . $app->functions->htmlentities($p['policy_name']) . "</option>\r\n";
} }
} }
$app->tpl->setVar("policy", $policy_select); $app->tpl->setVar("policy", $policy_select);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment