View Single Post
  #3  
Old 12-09-2013, 02:24 AM
 
joss joss is offline
 

X-Cart team
  
Join Date: Feb 2009
Posts: 60
 

Default Re: Is it just me, or...

Sorry, there was a typo in the code. You should modify this file in your X-Cart installation: skin/common_files/modules/XPayments_Connector/allow_recharges.tpl:

- find this line:

Quote:
<small><a href="javascript: void();" onclick="javascript: xAlert('{$lng.txt_save_cards_is_safe|escape}', '{$lng.lbl_information|escape}')">{$lng.lbl_save_c ards_is_safe}</a></small>

- and replace it with this one:

Quote:
<small><a href="javascript: void(0);" onclick="javascript: xAlert('{$lng.txt_save_cards_is_safe|escape}', '{$lng.lbl_information|escape}');">{$lng.lbl_save_ cards_is_safe}</a></small>

I. e. "javascript: void();" should be replaced with "javascript: void(0);".
__________________
joss@x-cart.com
Reply With Quote