We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c57e5a9 commit f47f81cCopy full SHA for f47f81c
public_html/lists/admin/editlist.php
@@ -162,7 +162,7 @@
162
echo '<div class="label"><label for="owner">'.s('Owner').'</label></div><div class="field"><select name="owner">';
163
foreach ($admins as $adminid => $adminname) {
164
printf(' <option value="%d" %s>%s</option>', $adminid,
165
- $adminid == $list['owner'] ? 'selected="selected"' : '', $adminname);
+ $adminid == $list['owner'] ? 'selected="selected"' : '', htmlentities($adminname));
166
}
167
echo '</select></div>';
168
} else {
0 commit comments