I have updated the .zip to inlcude the following. I have added another change to the showthread.php file.
In showthread.php look for
Code:
DEVDEBUG("First Post: $FIRSTPOSTID; Last Post: $LASTPOSTID");
$pagenav = construct_page_nav($vbulletin->GPC['pagenumber'], $perpage, $totalposts, "showthread.php?" . $vbulletin->session->vars['sessionurl'] . "t=$threadid", ""
. (!empty($vbulletin->GPC['perpage']) ? "&pp=$perpage" : "")
. "$highlightwords"
);
and change this to
Code:
DEVDEBUG("First Post: $FIRSTPOSTID; Last Post: $LASTPOSTID");
$onlybyuserid == $post['userid'];
if ($onlybyuserid != 0) {
$pagenav = construct_page_nav($vbulletin->GPC['pagenumber'], $perpage, $totalposts, "showthread.php?" . $vbulletin->session->vars['sessionurl'] . "t=$threadid&onlybyuserid=$onlybyuserid", ""
. (!empty($vbulletin->GPC['perpage']) ? "&pp=$perpage" : "")
. "$highlightwords"
);
} else {
$pagenav = construct_page_nav($vbulletin->GPC['pagenumber'], $perpage, $totalposts, "showthread.php?" . $vbulletin->session->vars['sessionurl'] . "t=$threadid", ""
. (!empty($vbulletin->GPC['perpage']) ? "&pp=$perpage" : "")
. "$highlightwords"
);
}
If anyone can write this as the other changes I have to showthread.php as a plugin I would appreciate it.
Thanks,
Parker