ok this "should" work:
in online.php
find:
Code:
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing Thread <a href='showthread.php?s=$session[sessionhash]&threadid=$userinfo[threadid]'>".$thread[title][$userinfo[threadid]]."</a>";
}
break;
change to:
Code:
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing <a href='showthread.php?s=$session[sessionhash]&threadid=$userinfo[threadid]'>".$thread[title][$userinfo[threadid]]."</a>";
}
break;
find:
Code:
case 'showpost':
if (!$thread[title][$post[$userinfo[postid]]] || !$forum[canview][$thread[forumid][$post[$userinfo[postid]]]] || (!$forum[canviewothers][$thread[forumid][$post[$userinfo[postid]]]] && $thread[postuserid][$post[$userinfo[postid]]] != $bbuserinfo[userid])) {
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing Thread <a href='showthread.php?s=$session[sessionhash]&postid=$userinfo[postid]'>".$thread[title][$post[$userinfo[postid]]]."</a>";
}
break;
replace with:
Code:
case 'showpost':
if (!$thread[title][$post[$userinfo[postid]]] || !$forum[canview][$thread[forumid][$post[$userinfo[postid]]]] || (!$forum[canviewothers][$thread[forumid][$post[$userinfo[postid]]]] && $thread[postuserid][$post[$userinfo[postid]]] != $bbuserinfo[userid])) {
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing <a href='showthread.php?s=$session[sessionhash]&postid=$userinfo[postid]'>".$thread[title][$post[$userinfo[postid]]]."</a>";
}
break;
I left in the just "Viewing Thread" as it'll just be "Viewing" with no url of any sort if they are, but the one that counts is the "viewing "url of thread+ name"
Let me know if it works! Make sure you make a backup