Changeset 966279
- Timestamp:
- 08/15/2014 10:22:55 AM (12 years ago)
- Location:
- orillacart/trunk
- Files:
-
- 2 edited
-
com_shop/helpers/cart.php (modified) (1 diff)
-
main.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
orillacart/trunk/com_shop/helpers/cart.php
r960856 r966279 288 288 289 289 290 $k = count($_SESSION['cart'] > 0 )? max(array_keys($_SESSION['cart']))+1 : 0;290 $k = is_array($_SESSION['cart']) && count($_SESSION['cart']) > 0 ? max(array_keys($_SESSION['cart']))+1 : 0; 291 291 292 292 $values = array(); -
orillacart/trunk/main.php
r960856 r966279 3 3 /* 4 4 Plugin Name: OrillaCart 5 Version: 1.2. 55 Version: 1.2.6 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.2. 5");19 define("ORILLACART_VERSION","1.2.6"); 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.