Changeset 174224
- Timestamp:
- 11/16/2009 04:44:49 PM (16 years ago)
- Location:
- dpd-cart/trunk
- Files:
-
- 3 edited
-
dpd-wpcart/DPDCartApi.php (modified) (1 diff)
-
dpd-wpcart/dpd-wpcart.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dpd-cart/trunk/dpd-wpcart/DPDCartApi.php
r163442 r174224 95 95 $response = json_decode($raw, true); 96 96 } 97 else if(include_once(dirname(__FILE__) . " ../../wp-includes/js/tinymce/plugins/spellchecker/classes/utils/JSON.php"))97 else if(include_once(dirname(__FILE__) . "/../../../wp-includes/js/tinymce/plugins/spellchecker/classes/utils/JSON.php")) 98 98 { 99 $response = Moxiecode_JSON::decode($response); 99 $json = new Moxiecode_JSON(); 100 $response = $json->decode($raw); 100 101 } 101 102 -
dpd-cart/trunk/dpd-wpcart/dpd-wpcart.php
r163442 r174224 22 22 Plugin URI: http://www.digitalproductdelivery.com/ 23 23 Description: The easy method to fully integrate your DPD cart with a wordpress blog. 24 Version: 1. 124 Version: 1.2 25 25 Author: DPD: Digital Product Delivery 26 26 Author URI: http://www.digitalproductdelivery.com … … 37 37 class DPDCart 38 38 { 39 var $version = '1. 0.0';39 var $version = '1.2.0'; 40 40 var $api; 41 41 -
dpd-cart/trunk/readme.txt
r163442 r174224 66 66 == Changelog == 67 67 68 = 1.2 = 69 * php < 5.2 compatibility fix 70 68 71 = 1.1 = 69 * IE6 compat ability fixes72 * IE6 compatibility fixes 70 73 * Button image URL fix 71 74 * Added more button sets
Note: See TracChangeset
for help on using the changeset viewer.