Changeset 836 for branches/Ver2.4/xpressme_integration_kit/include/xml.php
- Timestamp:
- Feb 9, 2013, 9:01:42 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Ver2.4/xpressme_integration_kit/include/xml.php
r615 r836 16 16 if( ! function_exists( 'xpress_XML_unserialize' ) ) : // d3pipe Used function 17 17 function & xpress_XML_unserialize(&$xml){ 18 $xml_parser = &new xpress_XML(); 18 if ( version_compare(PHP_VERSION, '5.0.0', '>')) { 19 eval('$xml_parser = new xpress_XML();'); 20 }else { 21 eval('$xml_parser = &new xpress_XML();'); 22 } 19 23 $data = &$xml_parser->parse($xml); 20 24 $xml_parser->destruct();
Note: See TracChangeset
for help on using the changeset viewer.