summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_advanced_admin.php
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2014-12-02 21:35:54 -0600
committerChris Buechler <cmb@pfsense.org>2014-12-02 21:35:54 -0600
commita94b1edc7f812eef904da0b196ae1abfe1e9c354 (patch)
tree45fc43d4fb5479033a79dbe170ff75957358a33d /usr/local/www/system_advanced_admin.php
parentc042bc3b1050e1156fea6494809f433d084f45b1 (diff)
parent8ce58e05f0c5552b7dbb5925b118b6e29c1994cd (diff)
downloadpfsense-a94b1edc7f812eef904da0b196ae1abfe1e9c354.zip
pfsense-a94b1edc7f812eef904da0b196ae1abfe1e9c354.tar.gz
Merge pull request #1348 from phil-davis/patch-4
Diffstat (limited to 'usr/local/www/system_advanced_admin.php')
-rw-r--r--usr/local/www/system_advanced_admin.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/usr/local/www/system_advanced_admin.php b/usr/local/www/system_advanced_admin.php
index 0ef818c..43bc1c7 100644
--- a/usr/local/www/system_advanced_admin.php
+++ b/usr/local/www/system_advanced_admin.php
@@ -59,6 +59,7 @@ $pconfig['noantilockout'] = isset($config['system']['webgui']['noantilockout']);
$pconfig['nodnsrebindcheck'] = isset($config['system']['webgui']['nodnsrebindcheck']);
$pconfig['nohttpreferercheck'] = isset($config['system']['webgui']['nohttpreferercheck']);
$pconfig['beast_protection'] = isset($config['system']['webgui']['beast_protection']);
+$pconfig['pagenamefirst'] = isset($config['system']['webgui']['pagenamefirst']);
$pconfig['loginautocomplete'] = isset($config['system']['webgui']['loginautocomplete']);
$pconfig['althostnames'] = $config['system']['webgui']['althostnames'];
$pconfig['enableserial'] = $config['system']['enableserial'];
@@ -175,6 +176,11 @@ if ($_POST) {
else
unset($config['system']['webgui']['beast_protection']);
+ if ($_POST['pagenamefirst'] == "yes")
+ $config['system']['webgui']['pagenamefirst'] = true;
+ else
+ unset($config['system']['webgui']['pagenamefirst']);
+
if ($_POST['loginautocomplete'] == "yes")
$config['system']['webgui']['loginautocomplete'] = true;
else
@@ -498,6 +504,17 @@ function prot_change() {
</td>
</tr>
<tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("Browser tab text"); ?></td>
+ <td width="78%" class="vtable">
+ <input name="pagenamefirst" type="checkbox" id="pagenamefirst" value="yes" <?php if ($pconfig['pagenamefirst']) echo "checked=\"checked\""; ?> />
+ <strong><?=gettext("Display page name first in browser tab"); ?></strong>
+ <br />
+ <?php echo gettext("When this is unchecked, the browser tab shows the host name followed by the current page. "); ?>
+ <br />
+ <?php echo gettext("Check this box to display the current page followed by the host name."); ?>
+ </td>
+ </tr>
+ <tr>
<td colspan="2" class="list" height="12">&nbsp;</td>
</tr>
<tr>
OpenPOWER on IntegriCloud