Index: branches/RC/core/kernel/processors/tag_processor.php =================================================================== diff -u -r8929 -r9286 --- branches/RC/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 8929) +++ branches/RC/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 9286) @@ -26,7 +26,7 @@ $tag_mapping = $aggregator->GetArrayValue($tag->Prefix, $Method); if ($tag_mapping) { - $mapped_tag =& new Tag('', $this->Application->Parser); + $mapped_tag = new Tag('', $this->Application->Parser); $mapped_tag->CopyFrom($tag); $mapped_tag->Processor = $tag_mapping[0]; $mapped_tag->Tag = $tag_mapping[1]; @@ -208,7 +208,7 @@ $this->Application->ApplicationDie ("Filepath and ClassName for prefix $prefix not defined while processing ".htmlspecialchars($tag->GetFullTag())."!"); include_once($this->Prefixes[$prefix]['path']); $ClassName = $this->Prefixes[$prefix]['class']; - $a_processor =& new $ClassName($prefix); + $a_processor = new $ClassName($prefix); $this->SetProcessor($prefix, $a_processor); }