Changeset 856019
- Timestamp:
- 02/12/2014 01:12:57 AM (12 years ago)
- Location:
- orillacart/trunk
- Files:
-
- 3 edited
-
com_shop/helpers/product_helper.php (modified) (2 diffs)
-
core/framework.php (modified) (1 diff)
-
main.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
orillacart/trunk/com_shop/helpers/product_helper.php
r855239 r856019 20 20 21 21 public function get_price_with_tax($o, $p = array(), $f = array(), $country = null, $state = null) { 22 23 if (is_int($o) ) {22 23 if (is_int($o) || is_string($o)) { 24 24 $r = Factory::getApplication('shop')->getTable('product')->load($o); 25 25 … … 80 80 81 81 82 if (is_int($o) ) {82 if (is_int($o) || is_string($o)) { 83 83 84 84 $r = Factory::getApplication('shop')->getTable('product')->load($o); -
orillacart/trunk/core/framework.php
r855956 r856019 271 271 $GLOBALS['wp_query'] = $query; 272 272 $GLOBALS['post'] = $page; 273 274 if (file_exists(get_stylesheet_directory() . "/com_" . strtolower(request::getCmd('component')) . ".php")) { 275 return get_stylesheet_directory() . "/com_" . strtolower(request::getCmd('component')) . ".php"; 276 } 273 277 274 278 add_shortcode("framework",array($this,'attachTheContent')); -
orillacart/trunk/main.php
r855956 r856019 3 3 /* 4 4 Plugin Name: OrillaCart 5 Version: 1.0.1 85 Version: 1.0.19 6 6 Description: ecommerce solution for WordPress 7 7 Plugin URI: http://orillacart.com
Note: See TracChangeset
for help on using the changeset viewer.