Index: branches/5.2.x/units/shipping_quote_engines/usps.php =================================================================== diff -u -N -r14582 -r15141 --- branches/5.2.x/units/shipping_quote_engines/usps.php (.../usps.php) (revision 14582) +++ branches/5.2.x/units/shipping_quote_engines/usps.php (.../usps.php) (revision 15141) @@ -1,6 +1,6 @@ Application->recallObject('kXMLHelper'); + $xml_helper = $this->Application->recallObject('kXMLHelper'); /* @var $xml_helper kXMLHelper */ $root_node =& $xml_helper->Parse($body); @@ -956,7 +956,7 @@ } // parse response - $xml_helper =& $this->Application->recallObject('kXMLHelper'); + $xml_helper = $this->Application->recallObject('kXMLHelper'); $root_node =& $xml_helper->Parse($body); /* @var $root_node kXMLNode */ $Postage = 0; @@ -1000,7 +1000,7 @@ } if ( $label_file != '' ) { - $file_helper =& $this->Application->recallObject('FileHelper'); + $file_helper = $this->Application->recallObject('FileHelper'); /* @var $file_helper FileHelper */ $file_helper->CheckFolder(USPS_LABEL_FOLDER); @@ -1014,7 +1014,7 @@ function GetUSPSCountry($country, $default = 'US') { - $cs_helper =& $this->Application->recallObject('CountryStatesHelper'); + $cs_helper = $this->Application->recallObject('CountryStatesHelper'); /* @var $cs_helper kCountryStatesHelper */ $country = $cs_helper->getCountryIso($country); @@ -1099,7 +1099,7 @@ return Array('error' => implode('
', $errors)); } - $xml_helper =& $this->Application->recallObject('kXMLHelper'); + $xml_helper = $this->Application->recallObject('kXMLHelper'); $root_node =& $xml_helper->Parse($body); /* @var $root_node kXMLNode */