diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-12-22 10:12:25 -0200 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-12-22 10:12:57 -0200 |
commit | 22a7fef8b7ff2fc4f9c13b6a248912c1cf8e345b (patch) | |
tree | f00c6ce167642b3893db53252be73089895fe17e /usr | |
parent | 1eff6ee0a2b98b4e571e7cb4dd6fc285605f6307 (diff) | |
download | pfsense-22a7fef8b7ff2fc4f9c13b6a248912c1cf8e345b.zip pfsense-22a7fef8b7ff2fc4f9c13b6a248912c1cf8e345b.tar.gz |
Fix string, we want to print variable name here and not its value. Fixes #4132
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/services_captiveportal.php | 4 |
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.'), - ""{$PORTAL_ACTION}"", + '"$PORTAL_ACTION"', "name="accept"", "name="redirurl"", - "value="{$PORTAL_REDIRURL}"", + 'value="$PORTAL_REDIRURL"', ""auth_user"", ""auth_pass"", ""auth_voucher""); |