mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-20 03:16:12 +00:00
missing html escape
This commit is contained in:
parent
fbb98523ff
commit
896bcc5f1d
@ -160,7 +160,7 @@ include("head.inc");
|
||||
if (!empty($config['aliases']['alias'])):
|
||||
foreach ($config['aliases']['alias'] as $alias):
|
||||
if ($alias['type'] == 'port'):?>
|
||||
<option data-type="<?=$alias['type'];?>" value="<?=$alias['name'];?>"><?=$alias['name'];?></option>
|
||||
<option data-type="<?=$alias['type'];?>" value="<?=htmlspecialchars($alias['name']);?>"><?=htmlspecialchars($alias['name']);?></option>
|
||||
<?php
|
||||
endif;
|
||||
endforeach;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user