Index: branches/RC/core/kernel/parser/tags.php =================================================================== diff -u -r8929 -r9286 --- branches/RC/core/kernel/parser/tags.php (.../tags.php) (revision 8929) +++ branches/RC/core/kernel/parser/tags.php (.../tags.php) (revision 9286) @@ -16,7 +16,7 @@ function &GetTag($tag_data, &$parser, $inp_tag = 0) { if (!isset($this->_Tag)) { - $this->_Tag =& new Tag($tag_data, $parser, $inp_tag); + $this->_Tag = new Tag($tag_data, $parser, $inp_tag); } else { // $this->_Tag->Parser =& $parser; @@ -182,7 +182,7 @@ function ParseNamedParams($params_str) { - $params =& new Params($params_str); + $params = new Params($params_str); $this->NamedParams = $params->_Params; } @@ -208,12 +208,12 @@ } if ($this->Processor == 'm' || $this->Processor == 'm_TagProcessor') { //if we are procssing Main tags if ($this->Tag == 'block' || $this->Tag == 'DefineElement' || ($this->Tag == 'RenderElement' && $short_closing)) { - $tag =& new BlockTag('', $this->Parser); + $tag = new BlockTag('', $this->Parser); $tag->CopyFrom($this); $tag->Process(); } elseif($this->Tag == 'Capture') { - $tag =& new CaptureTag('', $this->Parser); + $tag = new CaptureTag('', $this->Parser); $tag->CopyFrom($this); $tag->Process(); } @@ -230,7 +230,7 @@ if ( defined('EXPERIMENTAL_PRE_PARSE') ) { $this->Parser->AppendCompiledCode( $this->GetCode() ); } - $tag =& new ConstructTag('', $this->Parser); + $tag = new ConstructTag('', $this->Parser); $tag->CopyFrom($this); $tag->Process(); }