Almqdad, did you upload the ezbounce.php file to your admincp directory?
Nathan, you could get the single link bouncecode back in your emails by altering the code as follows, but I would suggest changing it within the plugin for
mail_send instead of doing it in the xml file (it's always safer to avoid editing xml plugins manually).
Try changing following:
PHP Code:
$bounceurl = $vbulletin->options['ezb_admincpurl'] . "/ezbounce.php?u=" . $buser['userid'];
$bouncestring = "<a href=\"$bounceurl\" target=\"_blank\">$bounceurl</a>";
to this:
PHP Code:
$bounceurl = $vbulletin->options['ezb_admincpurl'] . "/ezbounce.php?u=" . $buser['userid'];
$bouncestring = $bounceurl;
Untested, but I think that'll do the trick for what you want.