Plugin Directory

Changeset 1013967


Ignore:
Timestamp:
10/25/2014 10:50:11 PM (11 years ago)
Author:
orillacart
Message:

Fix shipping calculation when paypal is in use.

Location:
orillacart/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orillacart/trunk/com_shop/methods/paypal.php

    r883035 r1013967  
    146146                    $items = $db->loadObjectList();
    147147
    148                     $post_variables['tax_cart'] = round($order_r->get("order_tax", 0), 2);
     148                    $post_variables['tax_cart'] = round($order_r->get("order_tax", 0), 2) + round($order_r->get("order_shipping_tax", 0), 2);
    149149
    150150                    $total_items = count($items);
  • orillacart/trunk/main.php

    r1009355 r1013967  
    33/*
    44  Plugin Name: OrillaCart
    5   Version: 1.2.9
     5  Version: 1.3.0
    66  Description: ecommerce solution for WordPress
    77  Plugin URI: http://orillacart.com
     
    1717define("ORILLA_FRAMEWORK_BASE",realpath(dirname(__FILE__)));
    1818define("ORILLA_FRAMEWORK_CORE",realpath(dirname(__FILE__).DS."core"));
    19 define("ORILLACART_VERSION","1.2.9");
     19define("ORILLACART_VERSION","1.3.0");
    2020
    2121define("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.