Hey everyone,
I've fixed a minor bug which displays the unsubscribe link for guests. The zip file has the updated hack instructions, but if you've already installed the hack, here's the quick fix:
In forumdisplay.php and showthread.php, you inserted this line:
Quote:
if ($subscribed[userid] == $bbuserinfo[userid])
|
Just change that to:
Quote:
if (($subscribed[userid] == $bbuserinfo[userid]) and ($bbuserinfo[userid] != 0))
|
That's it!