Index: branches/5.2.x/core/kernel/processors/tag_processor.php =================================================================== diff -u -N -r14995 -r15137 --- branches/5.2.x/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 14995) +++ branches/5.2.x/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 15137) @@ -1,6 +1,6 @@ Application->hasObject('TagsAggregator') ) { - $aggregator =& $this->Application->recallObject('TagsAggregator'); + $aggregator = $this->Application->recallObject('TagsAggregator'); /* @var $aggregator kArray */ $tmp = $this->Application->processPrefix($prefix); @@ -149,7 +149,7 @@ { if ( $this->Application->hasObject('TagsAggregator') ) { $Method = $tag; - $aggregator =& $this->Application->recallObject('TagsAggregator'); + $aggregator = $this->Application->recallObject('TagsAggregator'); /* @var $aggregator kArray */ $tmp = $this->Application->processPrefix($prefix); @@ -160,7 +160,7 @@ $tmp = $this->Application->processPrefix($tag_mapping[0]); $__tag_processor = $tmp['prefix'] . '_TagProcessor'; - $processor =& $this->Application->recallObject($__tag_processor); + $processor = $this->Application->recallObject($__tag_processor); /* @var $processor kTagProcessor */ $processor->Init($tmp['prefix'], getArrayValue($tag_mapping, 2) ? $tag_mapping[2] : $tmp['special']);