Changeset 1018158
- Timestamp:
- 11/02/2014 03:05:33 AM (11 years ago)
- Location:
- orillacart/trunk
- Files:
-
- 4 edited
-
com_shop/helpers/standart_shipping.php (modified) (2 diffs)
-
com_shop/languages/com_shop.pot (modified) (1 diff)
-
com_shop/methods/paypal.php (modified) (1 diff)
-
main.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
orillacart/trunk/com_shop/helpers/standart_shipping.php
r879830 r1018158 387 387 388 388 $order = Factory::getApplication('shop')->getHelper('order'); 389 $price = Factory::getApplication('shop')->getHelper('price'); 389 390 $params = Factory::getApplication('shop')->getParams(); 390 391 $rates = $this->get_rates(); … … 432 433 433 434 434 $row->name = strings::stripAndEncode($rate->name . " - " . $rate->shipping_rate_name . " (+" . $ row->rate. ") ");435 $row->name = strings::stripAndEncode($rate->name . " - " . $rate->shipping_rate_name . " (+" . $price->format($row->rate) . ") "); 435 436 436 437 $id = new stdClass(); -
orillacart/trunk/com_shop/languages/com_shop.pot
r957949 r1018158 2878 2878 msgstr "" 2879 2879 2880 #: methods/paypal.php:182 2881 msgid "Please wait, you will be redirected to paypal shortly!" 2882 msgstr "" 2883 2880 2884 #: tables/carrier.php:47 2881 2885 msgid "Enter carrier label" -
orillacart/trunk/com_shop/methods/paypal.php
r1013967 r1018158 180 180 echo "</form>"; 181 181 ?> 182 <div style='margin:0 auto; font-weight:bold; width:100%; text-align:center;'> Please wait, you will be redirected to paypal shortly!</div>182 <div style='margin:0 auto; font-weight:bold; width:100%; text-align:center;'><?php _e("Please wait, you will be redirected to paypal shortly!","com_shop"); ?></div> 183 183 <script type='text/javascript'>document.paypalfrm.submit();</script> 184 184 -
orillacart/trunk/main.php
r1013967 r1018158 3 3 /* 4 4 Plugin Name: OrillaCart 5 Version: 1.3. 05 Version: 1.3.1 6 6 Description: ecommerce solution for WordPress 7 7 Plugin URI: http://orillacart.com … … 17 17 define("ORILLA_FRAMEWORK_BASE",realpath(dirname(__FILE__))); 18 18 define("ORILLA_FRAMEWORK_CORE",realpath(dirname(__FILE__).DS."core")); 19 define("ORILLACART_VERSION","1.3. 0");19 define("ORILLACART_VERSION","1.3.1"); 20 20 21 21 define("ORILLA_FRAMEWORK_PUBLIC_KEY",realpath(dirname(__FILE__).DS."core".DS."public_key".DS."orillacart.pub"));
Note: See TracChangeset
for help on using the changeset viewer.