Index: branches/5.2.x/units/zones/zones_tag_processor.php =================================================================== diff -u -N -r15156 -r16516 --- branches/5.2.x/units/zones/zones_tag_processor.php (.../zones_tag_processor.php) (revision 15156) +++ branches/5.2.x/units/zones/zones_tag_processor.php (.../zones_tag_processor.php) (revision 16516) @@ -1,6 +1,6 @@ getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); $selected_country_id = (int)$this->Application->GetVar('CountrySelector'); @@ -67,8 +67,8 @@ break; case 'has_states': + /** @var kCountryStatesHelper $cs_helper */ $cs_helper = $this->Application->recallObject('CountryStatesHelper'); - /* @var $cs_helper kCountryStatesHelper */ $has_states = $cs_helper->getCountriesWithStates(); @@ -125,8 +125,8 @@ function ShowStates($params) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -192,8 +192,8 @@ function ShowZips($params) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $destination_table = $this->getDestinationsTable($params); @@ -257,8 +257,8 @@ static $table_name = ''; if (!$table_name) { + /** @var kDBItem $object */ $object = $this->getObject($params); - /* @var $object kDBItem */ $table_name = $this->Application->getUnitOption('dst', 'TableName');