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