Changeset 1885491
- Timestamp:
- 06/01/2018 01:39:56 PM (8 years ago)
- Location:
- isv-connect/trunk
- Files:
-
- 3 edited
-
classes/ISV_API.php (modified) (3 diffs)
-
isv-connect.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
isv-connect/trunk/classes/ISV_API.php
r1874539 r1885491 12 12 13 13 private $_api_url = null; 14 private $_raw_xml = null; 14 15 15 16 private $_allowed_html = array( … … 85 86 $response['loaded-from'] = 'api'; 86 87 $response['api-url'] = $this->_api_url; 88 $response['raw-xml'] = $this->_raw_xml; 87 89 88 90 //store the result in the transient cache system … … 113 115 //get the raw XML data from the external API 114 116 $raw_xml_body = $this->_get_remote_feed( $feedcode, $from, $until ); 117 118 $this->_raw_xml = $raw_xml_body; 115 119 116 120 //convert XML data to an array -
isv-connect/trunk/isv-connect.php
r1874539 r1885491 3 3 /** 4 4 * Plugin Name: ISV Connect 5 * Version: 1. 35 * Version: 1.4 6 6 * Plugin URI: https://www.radishconcepts.com/isv-connect 7 7 * Description: This plugin connects your website to the ISV Software system -
isv-connect/trunk/readme.txt
r1874539 r1885491 47 47 == Changelog == 48 48 49 = 1.4 = 50 Release Date: June 1st, 2018 51 52 Feature: Added the raw xml body in the ajax return for debugging purposes 53 49 54 = 1.3 = 50 55 Release Date: May 15th, 2018
Note: See TracChangeset
for help on using the changeset viewer.