Plugin Directory

Changeset 887776


Ignore:
Timestamp:
04/05/2014 12:04:21 AM (12 years ago)
Author:
orillacart
Message:

Another bug fix of the category manager, introduced by last update!

Location:
orillacart/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orillacart/trunk/libs/tree.php

    r887769 r887776  
    7777            $this->db->setQuery("
    7878                SELECT * FROM `" . $this->xref . "` as a
    79         INNER JOIN `#_term_taxonomy` as b ON b.term_taxonomy_id = a.category_child_id
     79        INNER JOIN `#_term_taxonomy` as b ON b.term_id = a.category_child_id
    8080                INNER JOIN `#_terms` as c on c.term_id = b.term_id
    81                 WHERE b.parent = " . (int) $id . " ORDER BY a.position ASC
     81                WHERE b.taxonomy = '".$this->taxonomy."' AND b.parent = " . (int) $id . " ORDER BY a.position ASC
    8282                    ");
    8383        }
    84 
     84       
    8585        if ($ret_resource)
    8686            return clone $this->db;
  • orillacart/trunk/main.php

    r887769 r887776  
    33/*
    44  Plugin Name: OrillaCart
    5   Version: 1.1.4
     5  Version: 1.1.5
    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.1.4");
     19define("ORILLACART_VERSION","1.1.5");
    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.