There's one bug with DBTech's Advanced User Tagging (v3.0.5, maybe all in v3 series) and this mod.
Anyway, it is noticeable if you use Paul's mod double post prevention. I described bug here:
http://www.dragonbyte-tech.com/f51/s...tion-mod-9721/
Solution is to as follows:
Find Prevent DoublePost plug-in for newpost_complete hook (all plug ins have same name, but hook location is different).
In plugin you need to find this code:
PHP Code:
$spacer = '[COLOR="'.$vbulletin->options['pdp_colour'].'"]'."\n\n".$spacer."\n\n".'[/COLOR]';
And it needs to be changed into this:
PHP Code:
$spacer = "\n".'[COLOR="'.$vbulletin->options['pdp_colour'].'"]'."\n\n".$spacer."\n\n".'[/COLOR]'."\n";
It adds line break at the beginning and at the end. Actually, for this bug it is only necessary to have only in the end line break, but I added it to both places, so people could easier remove color tags from the rest of the post.
Now it works fine.
If you use both of this mods, you certainly would like to apply this change. And, it makes easier for users to quote double posts from other's if they want to delete unnecessary content of their posts (it puts information about double posts in new lines, not the same as users text).