Index: branches/5.3.x/core/kernel/processors/tag_processor.php =================================================================== diff -u -N -r15911 -r16519 --- branches/5.3.x/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 15911) +++ branches/5.3.x/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 16519) @@ -1,6 +1,6 @@ Application->hasObject('TagsAggregator') ) { + /** @var kArray $aggregator */ $aggregator = $this->Application->recallObject('TagsAggregator'); - /* @var $aggregator kArray */ $tmp = $this->Application->processPrefix($prefix); $tag_mapping = $aggregator->GetArrayValue($tmp['prefix'], $method); @@ -147,8 +147,9 @@ { if ( $this->Application->hasObject('TagsAggregator') ) { $Method = $tag; + + /** @var kArray $aggregator */ $aggregator = $this->Application->recallObject('TagsAggregator'); - /* @var $aggregator kArray */ $tmp = $this->Application->processPrefix($prefix); $tag_mapping = $aggregator->GetArrayValue($tmp['prefix'], $Method); @@ -158,8 +159,8 @@ $tmp = $this->Application->processPrefix($tag_mapping[0]); $__tag_processor = $tmp['prefix'] . '_TagProcessor'; + /** @var kTagProcessor $processor */ $processor = $this->Application->recallObject($__tag_processor); - /* @var $processor kTagProcessor */ $processor->Init($tmp['prefix'], getArrayValue($tag_mapping, 2) ? $tag_mapping[2] : $tmp['special']);