Index: trunk/phase3/maintenance/parserTests.inc |
— | — | @@ -219,7 +219,7 @@ |
220 | 220 | $this->setupGlobals($opts); |
221 | 221 | |
222 | 222 | $user =& new User(); |
223 | | - $options =& ParserOptions::newFromUser( $user ); |
| 223 | + $options = ParserOptions::newFromUser( $user ); |
224 | 224 | |
225 | 225 | if (preg_match('/\\bmath\\b/i', $opts)) { |
226 | 226 | # XXX this should probably be done by the ParserOptions |
— | — | @@ -243,7 +243,7 @@ |
244 | 244 | } elseif (preg_match('/\\bmsg\\b/i', $opts)) { |
245 | 245 | $out = $parser->transformMsg( $input, $options ); |
246 | 246 | } else { |
247 | | - $output =& $parser->parse( $input, $title, $options ); |
| 247 | + $output = $parser->parse( $input, $title, $options ); |
248 | 248 | $out = $output->getText(); |
249 | 249 | |
250 | 250 | if (preg_match('/\\bill\\b/i', $opts)) { |