Option for browser tab text order

Easy thing to do - add an option for the user to select if they want the host name or page name text to display first in the browser tab.
Forum: https://forum.pfsense.org/index.php?topic=84528.0
This commit is contained in:
Phil Davis 2014-11-25 22:14:06 +05:45
parent 2b58f94e60
commit 0274d41abe

View File

@ -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
@ -497,6 +503,17 @@ function prot_change() {
"More information on BEAST is available from <a target='_blank' href='https://en.wikipedia.org/wiki/Transport_Layer_Security#BEAST_attack'>Wikipedia</a>."); ?>
</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>