Changeset 1093867
- Timestamp:
- 02/19/2015 01:12:07 AM (11 years ago)
- Location:
- orillacart/trunk
- Files:
-
- 3 edited
-
core/route.php (modified) (1 diff)
-
main.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
orillacart/trunk/core/route.php
r850199 r1093867 68 68 if (get_option('show_on_front') == 'page' && $pid == get_option('page_on_front')) { 69 69 70 $q = $wp_pages[$com][0] . "/". $q;70 $q = trailingslashit($wp_pages[$com][0]) . $q; 71 71 } 72 return get_permalink($pid) . $q;72 return trailingslashit(get_permalink($pid)) . $q; 73 73 } 74 74 return get_permalink($pid) . ( stripos('?', $url) === false ? '?' . $url : $url ); -
orillacart/trunk/main.php
r1018158 r1093867 3 3 /* 4 4 Plugin Name: OrillaCart 5 Version: 1.3. 15 Version: 1.3.2 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.3. 1");19 define("ORILLACART_VERSION","1.3.2"); 20 20 21 21 define("ORILLA_FRAMEWORK_PUBLIC_KEY",realpath(dirname(__FILE__).DS."core".DS."public_key".DS."orillacart.pub")); -
orillacart/trunk/readme.txt
r1009355 r1093867 4 4 Donate link: 5 5 Requires at least: 3.5 6 Tested up to: 4. 06 Tested up to: 4.1.1 7 7 Stable tag: trunk 8 8 License: GPLv3
Note: See TracChangeset
for help on using the changeset viewer.