Hello,

I'm tring to upgrade my customised site, and one of the functions it does it emails me the credit card information...

not sure if anything has change but its not working...

the old code was
Code:
'CC Company: ' . $GLOBALS['cc_type'] . "\n" .
  'CC Number: ' . $GLOBALS['cc_number'] . "\n" .
  'CC Expiration (Month): ' . substr($GLOBALS['cc_expires'],0,2) . "\n" .
  'CC Expiration (Year): ' . substr($GLOBALS['cc_expires'],2,2) . "\n" .
  'CC Cardholder: ' . $GLOBALS['cc_owner'] . "\n" .
  'CC CVV: ' . $GLOBALS['cc_cvv'] . "\n" .
  'User IP: ' . $_SERVER['REMOTE_ADDR'] . "\n";
Now I use the same code but it wont work...

Does any1 know if anything has changed from zen-cart 1.2 to 1.3...

Thanks
DigitalGuard