Changeset 504786
- Timestamp:
- 02/14/2012 12:46:45 PM (14 years ago)
- Location:
- e-commerce-multi-currency-support
- Files:
-
- 1 deleted
- 3 edited
- 13 copied
-
tags/0.4.3 (copied) (copied from e-commerce-multi-currency-support/trunk)
-
tags/0.4.3/js-css (copied) (copied from e-commerce-multi-currency-support/trunk/js-css)
-
tags/0.4.3/js-css/currency.js (copied) (copied from e-commerce-multi-currency-support/trunk/js-css/currency.js)
-
tags/0.4.3/license.txt (copied) (copied from e-commerce-multi-currency-support/trunk/license.txt)
-
tags/0.4.3/localization (copied) (copied from e-commerce-multi-currency-support/trunk/localization)
-
tags/0.4.3/localization/currency-changer-ru_RU.po (copied) (copied from e-commerce-multi-currency-support/trunk/localization/currency-changer-ru_RU.po)
-
tags/0.4.3/localization/currency-changer-xx_XX.pot (copied) (copied from e-commerce-multi-currency-support/trunk/localization/currency-changer-xx_XX.pot)
-
tags/0.4.3/localization/wpsc-ru_RU.mo (deleted)
-
tags/0.4.3/localization/wpscmcs-ru_RU.mo (copied) (copied from e-commerce-multi-currency-support/trunk/localization/wpscmcs-ru_RU.mo)
-
tags/0.4.3/localization/wpscmcs-ru_RU.po (copied) (copied from e-commerce-multi-currency-support/trunk/localization/wpscmcs-ru_RU.po)
-
tags/0.4.3/readme.txt (copied) (copied from e-commerce-multi-currency-support/trunk/readme.txt) (2 diffs)
-
tags/0.4.3/widgets (copied) (copied from e-commerce-multi-currency-support/trunk/widgets)
-
tags/0.4.3/widgets/currency_chooser_widget.php (copied) (copied from e-commerce-multi-currency-support/trunk/widgets/currency_chooser_widget.php) (1 diff)
-
tags/0.4.3/wpsc-currency-changer.php (copied) (copied from e-commerce-multi-currency-support/trunk/wpsc-currency-changer.php) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/widgets/currency_chooser_widget.php (modified) (1 diff)
-
trunk/wpsc-currency-changer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
e-commerce-multi-currency-support/tags/0.4.3/readme.txt
r503832 r504786 4 4 Requires at least: 2.9 5 5 Tested up to: 3.1.1 6 Stable tag: 0.4. 26 Stable tag: 0.4.3 7 7 8 8 … … 17 17 18 18 == Changelog == 19 = 0.4.3 = 20 - added replacement of currency symbols ($€) 19 21 = 0.4.2 = 20 22 - improved localization -
e-commerce-multi-currency-support/tags/0.4.3/widgets/currency_chooser_widget.php
r503832 r504786 40 40 if($_SESSION['wpsc_currency_code'] == $country['id']){ 41 41 $selected_code = "selected='selected'"; 42 42 43 43 }else { 44 44 if ( !isset($_SESSION['wpsc_currency_code']) && $local_currency_code == $country['code']) -
e-commerce-multi-currency-support/tags/0.4.3/wpsc-currency-changer.php
r503832 r504786 4 4 Plugin URI: http://misha.beshkin.lv 5 5 Description: A plugin that provides a currency converter tool integrated into the WordPress Shopping Cart. This is trunk from wp-e-commerce-multi-currency-magic plugin. 6 Version: 0.4. 26 Version: 0.4.3 7 7 Author: Misha Beshkin 8 8 Author URI: http://misha.beshkin.lv … … 89 89 $totalpre = (float)$totalpre1; 90 90 $total_converted = number_format($totalpre * $wpsc_cart->currency_conversion, 2, '.', ''); 91 $total = preg_replace('/[A-Z ]{3}/', $wpsc_cart->selected_currency_code, $total);91 $total = preg_replace('/[A-Z$€]{3}/', $wpsc_cart->selected_currency_code, $total); 92 92 $total = str_replace($totalpre1, $total_converted , $total); 93 93 -
e-commerce-multi-currency-support/trunk/readme.txt
r503832 r504786 4 4 Requires at least: 2.9 5 5 Tested up to: 3.1.1 6 Stable tag: 0.4. 26 Stable tag: 0.4.3 7 7 8 8 … … 17 17 18 18 == Changelog == 19 = 0.4.3 = 20 - added replacement of currency symbols ($€) 19 21 = 0.4.2 = 20 22 - improved localization -
e-commerce-multi-currency-support/trunk/widgets/currency_chooser_widget.php
r503832 r504786 40 40 if($_SESSION['wpsc_currency_code'] == $country['id']){ 41 41 $selected_code = "selected='selected'"; 42 42 43 43 }else { 44 44 if ( !isset($_SESSION['wpsc_currency_code']) && $local_currency_code == $country['code']) -
e-commerce-multi-currency-support/trunk/wpsc-currency-changer.php
r503832 r504786 4 4 Plugin URI: http://misha.beshkin.lv 5 5 Description: A plugin that provides a currency converter tool integrated into the WordPress Shopping Cart. This is trunk from wp-e-commerce-multi-currency-magic plugin. 6 Version: 0.4. 26 Version: 0.4.3 7 7 Author: Misha Beshkin 8 8 Author URI: http://misha.beshkin.lv … … 89 89 $totalpre = (float)$totalpre1; 90 90 $total_converted = number_format($totalpre * $wpsc_cart->currency_conversion, 2, '.', ''); 91 $total = preg_replace('/[A-Z ]{3}/', $wpsc_cart->selected_currency_code, $total);91 $total = preg_replace('/[A-Z$€]{3}/', $wpsc_cart->selected_currency_code, $total); 92 92 $total = str_replace($totalpre1, $total_converted , $total); 93 93
Note: See TracChangeset
for help on using the changeset viewer.