Revision 64c50ecd
Added by Jim Pingle about 10 years ago
usr/local/www/diag_authentication.php | ||
---|---|---|
99 | 99 |
if ($auth_server['name'] == $pconfig['authmode']) |
100 | 100 |
$selected = "selected=\"selected\""; |
101 | 101 |
?> |
102 |
<option value="<?=$auth_server['name'];?>" <?=$selected;?>><?=$auth_server['name'];?></option>
|
|
102 |
<option value="<?=htmlspecialchars($auth_server['name']);?>" <?=$selected;?>><?=htmlspecialchars($auth_server['name']);?></option>
|
|
103 | 103 |
<?php endforeach; ?> |
104 | 104 |
</select> |
105 | 105 |
</td> |
Also available in: Unified diff
Encode auth server name before display.