summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2007-12-01 04:10:15 +0000
committerScott Ullrich <sullrich@pfsense.org>2007-12-01 04:10:15 +0000
commit6818410973d0bde5a0371458f7384860c0307388 (patch)
treedc89756c5bb7fa322f680659cf5a155e16992040
parent44c31706024194c578fedaf21ba95c8171865cdc (diff)
downloadpfsense-6818410973d0bde5a0371458f7384860c0307388.zip
pfsense-6818410973d0bde5a0371458f7384860c0307388.tar.gz
Convert page title to use an array like all other pages where previously done.
-rw-r--r--usr/local/www/system_usermanager.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr/local/www/system_usermanager.php b/usr/local/www/system_usermanager.php
index dd1d670..80bc40c 100644
--- a/usr/local/www/system_usermanager.php
+++ b/usr/local/www/system_usermanager.php
@@ -34,11 +34,11 @@
require("guiconfig.inc");
// The page title for non-admins
-$pgtitle = "System: User Password";
+$pgtitle = array("System","User Password");
if (isSystemAdmin($HTTP_SERVER_VARS['AUTH_USER'])) {
// Page title for main admin
- $pgtitle = "System: User Manager";
+ $pgtitle = array("System","User Manager");
$id = $_GET['id'];
if (isset($_POST['id']))
@@ -166,7 +166,6 @@ if (isSystemAdmin($HTTP_SERVER_VARS['AUTH_USER'])) {
<body link="#000000" vlink="#000000" alink="#000000" onload="<?= $jsevents["body"]["onload"] ?>">
<?php include("fbegin.inc");?>
-<p class="pgtitle"><?=$pgtitle;?></p>
<?php if ($input_errors) print_input_errors($input_errors);?>
<?php if ($savemsg) print_info_box($savemsg);?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
OpenPOWER on IntegriCloud