Changeset 887776
- Timestamp:
- 04/05/2014 12:04:21 AM (12 years ago)
- Location:
- orillacart/trunk
- Files:
-
- 2 edited
-
libs/tree.php (modified) (1 diff)
-
main.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
orillacart/trunk/libs/tree.php
r887769 r887776 77 77 $this->db->setQuery(" 78 78 SELECT * FROM `" . $this->xref . "` as a 79 INNER JOIN `#_term_taxonomy` as b ON b.term_ taxonomy_id = a.category_child_id79 INNER JOIN `#_term_taxonomy` as b ON b.term_id = a.category_child_id 80 80 INNER JOIN `#_terms` as c on c.term_id = b.term_id 81 WHERE b. parent = " . (int) $id . " ORDER BY a.position ASC81 WHERE b.taxonomy = '".$this->taxonomy."' AND b.parent = " . (int) $id . " ORDER BY a.position ASC 82 82 "); 83 83 } 84 84 85 85 if ($ret_resource) 86 86 return clone $this->db; -
orillacart/trunk/main.php
r887769 r887776 3 3 /* 4 4 Plugin Name: OrillaCart 5 Version: 1.1. 45 Version: 1.1.5 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.1. 4");19 define("ORILLACART_VERSION","1.1.5"); 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.