diff --git a/include/class.osticket.php b/include/class.osticket.php index 44f4143672b9e4b427fbace7e3ce4d1e71867f91..86d206f212d6450db9755ac4f5c77926ff2a53c8 100644 --- a/include/class.osticket.php +++ b/include/class.osticket.php @@ -30,6 +30,7 @@ class osTicket { var $warning; var $message; + var $title; //Custom title. html > head > title. var $headers; var $config; @@ -168,6 +169,14 @@ class osTicket { return $this->headers; } + function setPageTitle($title) { + $this->title = $title; + } + + function getPageTitle() { + return $this->title; + } + function getErrors() { return $this->errors; } diff --git a/include/staff/header.inc.php b/include/staff/header.inc.php index 4d947535638195bb097bbf7c2bf2d1782e2d1856..a349cb3c6ecb662f2d82f64086fc4984e295c263 100644 --- a/include/staff/header.inc.php +++ b/include/staff/header.inc.php @@ -4,7 +4,7 @@ <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="cache-control" content="no-cache" /> <meta http-equiv="pragma" content="no-cache" /> - <title>osTicket Staff Control Panel</title> + <title><?php echo ($ost && ($title=$ost->getPageTitle()))?$title:'osTicket :: Staff Control Panel'; ?></title> <!--[if IE]> <style type="text/css"> .tip_shadow { display:block !important; } @@ -29,7 +29,7 @@ } ?> </head> -<body onunload=""> +<body> <div id="container"> <div id="header"> <a href="index.php" id="logo">osTicket - Customer Support System</a>