Index: branches/5.2.x/units/taxes/taxes_tag_processor.php =================================================================== diff -u -N -r15141 -r15156 --- branches/5.2.x/units/taxes/taxes_tag_processor.php (.../taxes_tag_processor.php) (revision 15141) +++ branches/5.2.x/units/taxes/taxes_tag_processor.php (.../taxes_tag_processor.php) (revision 15156) @@ -1,6 +1,6 @@ getObject($params); + $object = $this->getObject($params); /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -126,7 +126,7 @@ function ShowStates($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -193,7 +193,7 @@ function ShowZips($params) { - $object =& $this->getObject($params); + $object = $this->getObject($params); /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -258,7 +258,7 @@ static $table_name = ''; if (!$table_name) { - $object =& $this->getObject($params); + $object = $this->getObject($params); /* @var $object kDBItem */ $table_name = $this->Application->getUnitOption('taxdst', 'TableName');