DAT-2875 missing ref element fix

This commit is contained in:
idradm 2015-06-12 16:47:37 +02:00
parent 6d15673e5e
commit 70a5a7511c

View file

@ -27,11 +27,10 @@ class MediaWikiParserService implements ExternalParser {
}
$output = $this->parser->internalParse( $wikitext, false, $this->frame );
$this->parser->replaceLinkHolders( $output );
$result = $this->parser->killMarkers( $output );
wfProfileOut( __METHOD__ );
return $result;
return $output;
}
/**