Commit 896bcc5f authored by Ad Schellevis's avatar Ad Schellevis

missing html escape

parent fbb98523
...@@ -160,7 +160,7 @@ include("head.inc"); ...@@ -160,7 +160,7 @@ include("head.inc");
if (!empty($config['aliases']['alias'])): if (!empty($config['aliases']['alias'])):
foreach ($config['aliases']['alias'] as $alias): foreach ($config['aliases']['alias'] as $alias):
if ($alias['type'] == 'port'):?> 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 <?php
endif; endif;
endforeach; endforeach;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment