mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
More encoding
This commit is contained in:
parent
2debaf5c34
commit
b18d2108db
@ -239,7 +239,7 @@ function clearcombo() {
|
||||
<tr align="left">
|
||||
<td width="22%" valign="top" id="monitorport_text" class="vncellreq"><?=gettext("Port"); ?></td>
|
||||
<td width="78%" class="vtable" colspan="2">
|
||||
<input class="formfldalias" id="port" name="port" type="text" <?if (isset($pconfig['port'])) echo "value=\"{$pconfig['port']}\"";?> size="16" maxlength="16" /><br />
|
||||
<input class="formfldalias" id="port" name="port" type="text" <?if (isset($pconfig['port'])) echo "value=\"" . htmlspecialchars($pconfig['port']) . "\"";?> size="16" maxlength="16" /><br />
|
||||
<div id="monitorport_desc">
|
||||
<?=gettext("This is the port your servers are listening on."); ?><br />
|
||||
<?=gettext("You may also specify a port alias listed in Firewall -> Aliases here."); ?>
|
||||
@ -255,7 +255,7 @@ function clearcombo() {
|
||||
<tr align="left">
|
||||
<td width="22%" valign="top" id="retry_text" class="vncell"><?=gettext("Retry"); ?></td>
|
||||
<td width="78%" class="vtable" colspan="2">
|
||||
<input name="retry" type="text" <?if (isset($pconfig['retry'])) echo "value=\"{$pconfig['retry']}\"";?> size="16" maxlength="16" /><br />
|
||||
<input name="retry" type="text" <?if (isset($pconfig['retry'])) echo "value=\"" . htmlspecialchars($pconfig['retry']) . "\"";?> size="16" maxlength="16" /><br />
|
||||
<div id="retry_desc"><?=gettext("Optionally specify how many times to retry checking a server before declaring it down."); ?></div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user