Index: branches/5.2.x/core/kernel/processors/tag_processor.php =================================================================== diff -u -N -r15856 -r16513 --- branches/5.2.x/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 15856) +++ branches/5.2.x/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 16513) @@ -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); @@ -149,8 +149,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); @@ -160,8 +161,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']);