Skip to content
Snippets Groups Projects
Commit a7cfad69 authored by Peter Rotich's avatar Peter Rotich
Browse files

Set default custom page title

parent 657d3330
No related branches found
No related tags found
No related merge requests found
......@@ -59,4 +59,7 @@ if($ost->isUpgradePending()) {
//Admin navigation - overwrites what was set in staff.inc.php
$nav = new AdminNav($thisstaff);
//Page title.
$ost->setPageTitle('osTicket :: Admin Control Panel');
?>
......@@ -122,4 +122,7 @@ if($thisstaff->forcePasswdChange() && !$exempt) {
require('profile.php'); //profile.php must request this file as require_once to avoid problems.
exit;
}
$ost->setPageTitle('osTicket :: Staff Control Panel');
?>
......@@ -479,6 +479,7 @@ if($thisstaff->canCreateTickets()) {
$inc = 'tickets.inc.php';
if($ticket) {
$ost->setPageTitle('Ticket #'.$ticket->getNumber());
$nav->setActiveSubMenu(-1);
$inc = 'ticket-view.inc.php';
if($_REQUEST['a']=='edit' && $thisstaff->canEditTickets())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment