Quote:
Originally Posted by Trek
So I installed this, then realized it wasn't working with PaulM's Unread Posts mod.
There is probably a better way to get this to work with it, but this is what I did.
Open Plugin: Unread Posts and Reputation, Hook: Parse Templates
Find:
Code:
$eforums = unserialize($vbulletin->options['dupexcl']);
Add under it:
Code:
$eforums2 = explode(",", $vbulletin->userinfo['excludeforumids']);
Find:
Code:
in_array($xid,$eforums)
Add under it:
Code:
OR in_array($xid,$eforums2)
That should be it!
Hopefully this helps someone else using the same mod. =) Keep in mind though if/when Paul updates his mod, you'll have to make these changes again.
|
That didn't work for me for some reason..
The rest of the product is working just not Paul's mod w/your changes.
I'm also on 4.1 so that might have something to do with it.