I added the following for my users to allow them to donate $25.00 for a period of 12 months.
Upon testing the mod, I noticed that Paypal saw the transaction as $25.00 for 12 months, recurring for 12 years.
I modified the mod to fix this issue by removing the following code from the XML.
Code:
{
$vsapp_get_amount = explode('|', $vbulletin->GPC['amount']);
$vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick-subscriptions';
$vsapp_ppurl .= '&a3='.$vsapp_get_amount[0];
$vsapp_ppurl .= '&p3='.$vsapp_get_amount[1];
$vsapp_ppurl .= '&t3=M';
$vsapp_ppurl .= '&no_note=1';
$vsapp_ppurl .= '&sra=1';
$vsapp_ppurl .= '&src=1';
REMOVE THIS --------> $vsapp_ppurl .= '&srt='.$vsapp_get_amount[1];
}