Plugin Directory

Changeset 174224


Ignore:
Timestamp:
11/16/2009 04:44:49 PM (16 years ago)
Author:
DPDplugins
Message:

Fixed php < 5.2 json compatability.

Location:
dpd-cart/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • dpd-cart/trunk/dpd-wpcart/DPDCartApi.php

    r163442 r174224  
    9595      $response = json_decode($raw, true);
    9696    }
    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"))
    9898    {
    99       $response = Moxiecode_JSON::decode($response);
     99      $json = new Moxiecode_JSON();
     100      $response = $json->decode($raw);
    100101    }
    101102   
  • dpd-cart/trunk/dpd-wpcart/dpd-wpcart.php

    r163442 r174224  
    2222Plugin URI: http://www.digitalproductdelivery.com/
    2323Description: The easy method to fully integrate your DPD cart with a wordpress blog.
    24 Version: 1.1
     24Version: 1.2
    2525Author: DPD: Digital Product Delivery
    2626Author URI: http://www.digitalproductdelivery.com
     
    3737class DPDCart
    3838{
    39   var $version = '1.0.0';
     39  var $version = '1.2.0';
    4040  var $api;
    4141 
  • dpd-cart/trunk/readme.txt

    r163442 r174224  
    6666== Changelog ==
    6767
     68= 1.2 =
     69* php < 5.2 compatibility fix
     70
    6871= 1.1 =
    69 * IE6 compatability fixes
     72* IE6 compatibility fixes
    7073* Button image URL fix
    7174* Added more button sets
Note: See TracChangeset for help on using the changeset viewer.