Plugin Directory

Changeset 510492


Ignore:
Timestamp:
02/25/2012 06:09:12 PM (14 years ago)
Author:
beshkin
Message:

tagging version 0.4.4

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

Legend:

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

    r504786 r510492  
    44Requires at least: 2.9
    55Tested up to: 3.1.1
    6 Stable tag: 0.4.3
     6Stable tag: 0.4.4
    77
    88
     
    1717
    1818== Changelog ==
     19= 0.4.4 =
     20- additional fix for currency symbols
    1921= 0.4.3 =
    2022- added replacement of currency symbols ($€)
  • e-commerce-multi-currency-support/tags/0.4.4/wpsc-currency-changer.php

    r504786 r510492  
    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.3
     6Version: 0.4.4
    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

    r504786 r510492  
    44Requires at least: 2.9
    55Tested up to: 3.1.1
    6 Stable tag: 0.4.3
     6Stable tag: 0.4.4
    77
    88
     
    1717
    1818== Changelog ==
     19= 0.4.4 =
     20- additional fix for currency symbols
    1921= 0.4.3 =
    2022- added replacement of currency symbols ($€)
  • e-commerce-multi-currency-support/trunk/wpsc-currency-changer.php

    r504786 r510492  
    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.3
     6Version: 0.4.4
    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.