Make method parseNonEditWikitext public

It's used by the Comments extension.

Change-Id: If69b1706067a0c80420e427a453da965f226aa75
This commit is contained in:
Paladox 2019-12-23 01:54:28 +00:00
parent 72fd486374
commit b4fdb685cb

View file

@ -422,7 +422,7 @@ abstract class EchoDiscussionParser {
*
* @return ParserOutput
*/
private static function parseNonEditWikitext( $wikitext, Article $article ) {
public static function parseNonEditWikitext( $wikitext, Article $article ) {
static $cache = [];
$cacheKey = md5( $wikitext ) . ':' . $article->getTitle()->getPrefixedText();