Changeset 510492
- Timestamp:
- 02/25/2012 06:09:12 PM (14 years ago)
- Location:
- e-commerce-multi-currency-support
- Files:
-
- 1 deleted
- 2 edited
- 13 copied
-
tags/0.4.4 (copied) (copied from e-commerce-multi-currency-support/trunk)
-
tags/0.4.4/js-css (copied) (copied from e-commerce-multi-currency-support/trunk/js-css)
-
tags/0.4.4/js-css/currency.js (copied) (copied from e-commerce-multi-currency-support/trunk/js-css/currency.js)
-
tags/0.4.4/license.txt (copied) (copied from e-commerce-multi-currency-support/trunk/license.txt)
-
tags/0.4.4/localization (copied) (copied from e-commerce-multi-currency-support/trunk/localization)
-
tags/0.4.4/localization/currency-changer-ru_RU.po (copied) (copied from e-commerce-multi-currency-support/trunk/localization/currency-changer-ru_RU.po)
-
tags/0.4.4/localization/currency-changer-xx_XX.pot (copied) (copied from e-commerce-multi-currency-support/trunk/localization/currency-changer-xx_XX.pot)
-
tags/0.4.4/localization/wpsc-ru_RU.mo (deleted)
-
tags/0.4.4/localization/wpscmcs-ru_RU.mo (copied) (copied from e-commerce-multi-currency-support/trunk/localization/wpscmcs-ru_RU.mo)
-
tags/0.4.4/localization/wpscmcs-ru_RU.po (copied) (copied from e-commerce-multi-currency-support/trunk/localization/wpscmcs-ru_RU.po)
-
tags/0.4.4/readme.txt (copied) (copied from e-commerce-multi-currency-support/trunk/readme.txt) (2 diffs)
-
tags/0.4.4/widgets (copied) (copied from e-commerce-multi-currency-support/trunk/widgets)
-
tags/0.4.4/widgets/currency_chooser_widget.php (copied) (copied from e-commerce-multi-currency-support/trunk/widgets/currency_chooser_widget.php)
-
tags/0.4.4/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/wpsc-currency-changer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
e-commerce-multi-currency-support/tags/0.4.4/readme.txt
r504786 r510492 4 4 Requires at least: 2.9 5 5 Tested up to: 3.1.1 6 Stable tag: 0.4. 36 Stable tag: 0.4.4 7 7 8 8 … … 17 17 18 18 == Changelog == 19 = 0.4.4 = 20 - additional fix for currency symbols 19 21 = 0.4.3 = 20 22 - added replacement of currency symbols ($€) -
e-commerce-multi-currency-support/tags/0.4.4/wpsc-currency-changer.php
r504786 r510492 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. 36 Version: 0.4.4 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
r504786 r510492 4 4 Requires at least: 2.9 5 5 Tested up to: 3.1.1 6 Stable tag: 0.4. 36 Stable tag: 0.4.4 7 7 8 8 … … 17 17 18 18 == Changelog == 19 = 0.4.4 = 20 - additional fix for currency symbols 19 21 = 0.4.3 = 20 22 - added replacement of currency symbols ($€) -
e-commerce-multi-currency-support/trunk/wpsc-currency-changer.php
r504786 r510492 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. 36 Version: 0.4.4 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.