Skip to content

Commit

Permalink
Fix: Bad currency
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jan 19, 2012
1 parent b5c424d commit 9ad4f06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/public/paypal/newpayment.php
Expand Up @@ -171,8 +171,8 @@

// Other
$PAYPAL_API_DEVISE="EUR";
if ($CURRENCY == 'EUR') $PAYPAL_API_DEVISE="EUR";
if ($CURRENCY == 'USD') $PAYPAL_API_DEVISE="USD";
if ($currency == 'EUR') $PAYPAL_API_DEVISE="EUR";
if ($currency == 'USD') $PAYPAL_API_DEVISE="USD";

dol_syslog("Submit Paypal form", LOG_DEBUG);
dol_syslog("PAYPAL_API_USER: $PAYPAL_API_USER", LOG_DEBUG);
Expand Down

0 comments on commit 9ad4f06

Please sign in to comment.