Plugin Directory

Changeset 1093867


Ignore:
Timestamp:
02/19/2015 01:12:07 AM (11 years ago)
Author:
orillacart
Message:

Fix bug in the router.

Location:
orillacart/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orillacart/trunk/core/route.php

    r850199 r1093867  
    6868            if (get_option('show_on_front') == 'page' && $pid == get_option('page_on_front')) {
    6969
    70                 $q = $wp_pages[$com][0] . "/" . $q;
     70                $q = trailingslashit($wp_pages[$com][0]) . $q;
    7171            }
    72             return get_permalink($pid) . $q;
     72            return trailingslashit(get_permalink($pid)) . $q;
    7373        }
    7474        return get_permalink($pid) . ( stripos('?', $url) === false ? '?' . $url : $url );
  • orillacart/trunk/main.php

    r1018158 r1093867  
    33/*
    44  Plugin Name: OrillaCart
    5   Version: 1.3.1
     5  Version: 1.3.2
    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.3.1");
     19define("ORILLACART_VERSION","1.3.2");
    2020
    2121define("ORILLA_FRAMEWORK_PUBLIC_KEY",realpath(dirname(__FILE__).DS."core".DS."public_key".DS."orillacart.pub"));
  • orillacart/trunk/readme.txt

    r1009355 r1093867  
    44Donate link:
    55Requires at least: 3.5
    6 Tested up to: 4.0
     6Tested up to: 4.1.1
    77Stable tag: trunk
    88License: GPLv3
Note: See TracChangeset for help on using the changeset viewer.