2
Well, you may try this:
edit new/index.php
find this(close to the bottom):
/**
* Assign page's title
*/
if($firsttitle!='') {
$xoopsTpl->assign('xoops_pagetitle', $myts->htmlSpecialChars($firsttitle) . ' - ' . $myts->htmlSpecialChars($xoopsModule->name()));
} else {
if($topictitle!='') {
$xoopsTpl->assign('xoops_pagetitle', $myts->htmlSpecialChars($topictitle));
} else {
$xoopsTpl->assign('xoops_pagetitle', $myts->htmlSpecialChars($xoopsModule->name()));
}
}
Replace by this
/**
* Assign page's title
*/
if($firsttitle!='' && $storytopic!=0) {
$xoopsTpl->assign('xoops_pagetitle', $myts->htmlSpecialChars($firsttitle) . ' - ' . $myts->htmlSpecialChars($xoopsModule->name()));
} else {
if($topictitle!='') {
$xoopsTpl->assign('xoops_pagetitle', $myts->htmlSpecialChars($topictitle));
} else {
$xoopsTpl->assign('xoops_pagetitle', $myts->htmlSpecialChars($xoopsModule->name()));
}
}
You could remove that peace of code but, doing this way the news module would present the correct title if you are browsing a category (meaning you are no longer in first page).