Page MenuHomePhabricator

Please delete includes/ParserXML.php if it is no longer used
Closed, ResolvedPublic

Description

Author: nickpj

Description:

From an email from the start of April 2006:

Nick Jenkins wrote:

Problem: Use of deprecated call-time pass-by-reference (line 325 of

Mediawiki-1.6.3\includes\ParserXML.php)

Explanation: Arg 3 is already a ref (see function declaration on line 190 of

same file), so:

  • $ret .= $this->getTemplateXHTML($title, $parts, & $parser);

+ $ret .= $this->getTemplateXHTML($title, $parts, $parser);

This file's not really used and should probably be removed entirely...

  • brion vibber (brion @ pobox.com)

Version: 1.7.x
Severity: normal
Platform: PC

Details

Reference
bz6562

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 9:19 PM
bzimport set Reference to bz6562.
bzimport added a subscriber: Unknown Object (MLST).

Took this out of trunk in r15403. If it's brought back up to
date we could return it.