Plugin Directory

Changeset 504786


Ignore:
Timestamp:
02/14/2012 12:46:45 PM (14 years ago)
Author:
beshkin
Message:

tagging version 0.4.3

Location:
e-commerce-multi-currency-support
Files:
1 deleted
3 edited
13 copied

Legend:

Unmodified
Added
Removed
  • e-commerce-multi-currency-support/tags/0.4.3/readme.txt

    r503832 r504786  
    44Requires at least: 2.9
    55Tested up to: 3.1.1
    6 Stable tag: 0.4.2
     6Stable tag: 0.4.3
    77
    88
     
    1717
    1818== Changelog ==
     19= 0.4.3 =
     20- added replacement of currency symbols ($€)
    1921= 0.4.2 =
    2022- improved localization
  • e-commerce-multi-currency-support/tags/0.4.3/widgets/currency_chooser_widget.php

    r503832 r504786  
    4040                if($_SESSION['wpsc_currency_code'] == $country['id']){
    4141                    $selected_code = "selected='selected'";
    42                    
     42
    4343                }else {
    4444                    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  
    44Plugin URI: http://misha.beshkin.lv
    55Description: 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.2
     6Version: 0.4.3
    77Author: Misha Beshkin
    88Author URI: http://misha.beshkin.lv
     
    8989    $totalpre = (float)$totalpre1;
    9090    $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);
    9292    $total = str_replace($totalpre1, $total_converted , $total);
    9393
  • e-commerce-multi-currency-support/trunk/readme.txt

    r503832 r504786  
    44Requires at least: 2.9
    55Tested up to: 3.1.1
    6 Stable tag: 0.4.2
     6Stable tag: 0.4.3
    77
    88
     
    1717
    1818== Changelog ==
     19= 0.4.3 =
     20- added replacement of currency symbols ($€)
    1921= 0.4.2 =
    2022- improved localization
  • e-commerce-multi-currency-support/trunk/widgets/currency_chooser_widget.php

    r503832 r504786  
    4040                if($_SESSION['wpsc_currency_code'] == $country['id']){
    4141                    $selected_code = "selected='selected'";
    42                    
     42
    4343                }else {
    4444                    if ( !isset($_SESSION['wpsc_currency_code']) && $local_currency_code == $country['code'])
  • e-commerce-multi-currency-support/trunk/wpsc-currency-changer.php

    r503832 r504786  
    44Plugin URI: http://misha.beshkin.lv
    55Description: 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.2
     6Version: 0.4.3
    77Author: Misha Beshkin
    88Author URI: http://misha.beshkin.lv
     
    8989    $totalpre = (float)$totalpre1;
    9090    $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);
    9292    $total = str_replace($totalpre1, $total_converted , $total);
    9393
Note: See TracChangeset for help on using the changeset viewer.