
12-31-2010, 11:02 AM
|
 |
|
|
Join Date: Nov 2003
Posts: 142
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
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.
|
What did you do about the phrases in the plugin? What version of vb are you running?
|