summaryrefslogtreecommitdiffstats
path: root/usr/local/www/load_balancer_pool_edit.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2015-06-16 11:10:36 -0400
committerjim-p <jimp@pfsense.org>2015-06-16 11:10:36 -0400
commitb18d2108db73e33efd645ddee0e4a13b60347f8b (patch)
tree182330ba4c0acb10b33f65c7828dc98b7aff21cf /usr/local/www/load_balancer_pool_edit.php
parent2debaf5c34065aee52e4c095f4b120c5da518d3e (diff)
downloadpfsense-b18d2108db73e33efd645ddee0e4a13b60347f8b.zip
pfsense-b18d2108db73e33efd645ddee0e4a13b60347f8b.tar.gz
More encoding
Diffstat (limited to 'usr/local/www/load_balancer_pool_edit.php')
-rw-r--r--usr/local/www/load_balancer_pool_edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/load_balancer_pool_edit.php b/usr/local/www/load_balancer_pool_edit.php
index 8cf385b..91aef71 100644
--- a/usr/local/www/load_balancer_pool_edit.php
+++ b/usr/local/www/load_balancer_pool_edit.php
@@ -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 -&gt; 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>
OpenPOWER on IntegriCloud