Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -3341,7 +3341,7 @@ |
3342 | 3342 | throw new MWException( "Tag hook for $name is not callable\n" ); |
3343 | 3343 | } |
3344 | 3344 | $output = call_user_func_array( $this->mTagHooks[$name], |
3345 | | - array( $content, $attributes, &$this, $frame ) ); |
| 3345 | + array( $content, $attributes, $this, $frame ) ); |
3346 | 3346 | } elseif( isset( $this->mFunctionTagHooks[$name] ) ) { |
3347 | 3347 | list( $callback, $flags ) = $this->mFunctionTagHooks[$name]; |
3348 | 3348 | if( !is_callable( $callback ) ) |