Update ring_group_edit.php (#3386)

This commit is contained in:
AlexanderDCrane 2018-08-31 13:37:23 -06:00 committed by FusionPBX
parent 3edc4eb3f3
commit 71669f970b
1 changed files with 1 additions and 1 deletions

View File

@ -787,7 +787,7 @@
echo " <select name=\"user_uuid\" class='formfld' style='width: auto;'>\n";
echo " <option value=\"\"></option>\n";
foreach($users as $field) {
echo " <option value='".$field['user_uuid']."'>".$field['username']."</option>\n";
echo " <option value='".escape($field['user_uuid'])."'>".escape($field['username'])."</option>\n";
}
echo " </select>";
echo " <input type=\"submit\" class='btn' value=\"".$text['button-add']."\">\n";