hi there.
the standard generation of the title-tag is as follows:
<title>GLOBAL SITE TITLE - CONTENT ITEM NAME/TITLE</title>
i want it:
<title>CONTENT ITEM NAME/TITLE - GLOBAL SITE TITLE</title>
souldn't be too hard.
i searched in /includes/mambo.php but didn't find the right place...
i know it's somewhere here (from line 248):
*******
function setPageTitle( $title=null ) {
if (@$GLOBALS['mosConfig_pagetitles']) {
$title = trim( htmlspecialchars( $title ) );
$this->_head['title'] = $title ? $GLOBALS['mosConfig_sitename'] . ' - '. $title : $GLOBALS['mosConfig_sitename'];
}
}
*******
fun, anyone?
