summaryrefslogtreecommitdiffstats
path: root/usr/local
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2014-12-22 10:12:25 -0200
committerRenato Botelho <garga@FreeBSD.org>2014-12-22 10:12:40 -0200
commit7fd7c5a5454b8b59467016b62333818e585f9187 (patch)
tree138d4a9d07f4cdbf7db37a079e97520e0ec9e92d /usr/local
parentce90c89a308f6d3ceaf9193a570eb10911903f87 (diff)
downloadpfsense-7fd7c5a5454b8b59467016b62333818e585f9187.zip
pfsense-7fd7c5a5454b8b59467016b62333818e585f9187.tar.gz
Fix string, we want to print variable name here and not its value. Fixes #4132
Diffstat (limited to 'usr/local')
-rw-r--r--usr/local/www/services_captiveportal.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/services_captiveportal.php b/usr/local/www/services_captiveportal.php
index 70a72ba..3e41a02 100644
--- a/usr/local/www/services_captiveportal.php
+++ b/usr/local/www/services_captiveportal.php
@@ -1017,10 +1017,10 @@ function enable_change(enable_change) {
gettext('Upload an HTML/PHP file for the portal page here (leave blank to keep the current one). ' .
'Make sure to include a form (POST to %1$s) with a submit button (%2$s) and a hidden field with %3$s and %4$s. ' .
'Include the %5$s and %6$s and/or %7$s input fields if authentication is enabled, otherwise it will always fail.'),
- "&quot;{$PORTAL_ACTION}&quot;",
+ '&quot;$PORTAL_ACTION&quot;',
"name=&quot;accept&quot;",
"name=&quot;redirurl&quot;",
- "value=&quot;{$PORTAL_REDIRURL}&quot;",
+ 'value=&quot;$PORTAL_REDIRURL&quot;',
"&quot;auth_user&quot;",
"&quot;auth_pass&quot;",
"&quot;auth_voucher&quot;");
OpenPOWER on IntegriCloud