
02-22-2007, 07:11 AM
|
 |
|
|
Join Date: Feb 2006
Location: UK
Posts: 862
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Antivirus
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.
|
Thanks Antivirus
that worked great
|