View Single Post
  #5   IP: 153.99.38.100
Old 2016-08-13, 08:27 PM
Oglala Oglala is offline
初级会员
 
Join Date: 2007-01-04
Posts: 1
Oglala 现在声名狼藉
Default

Try changing this line:

Code:
// If no currency is set, use appropriate default
if (!isset($_SESSION['currency']) && !isset($_GET['currency']) ) $_SESSION['currency'] = DEFAULT_CURRENCY;
to this:
Code:
// If no currency is set, use appropriate default
if (!isset($_SESSION['currency']) && !isset($_GET['currency']) ) $_SESSION['currency'] = 'EUR';
And getting rid of the other edit. Probably a better solution.
Reply With Quote