mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-02 20:06:14 +00:00
In ScribuntoContentHandler use the new ParserFactory::getInstance()
To avoid an exception when the parser is re-entered. Bug: T310948 Depends-On: I762b191e978c2d1bbc9f332c9cfa047888ce2e67 Change-Id: I5013ed2a2958c3ff422778f9146f663aff0f5939
This commit is contained in:
parent
04f0866a88
commit
a0a0c3ee7e
|
@ -10,7 +10,7 @@
|
||||||
"license-name": "GPL-2.0-or-later AND MIT",
|
"license-name": "GPL-2.0-or-later AND MIT",
|
||||||
"type": "parserhook",
|
"type": "parserhook",
|
||||||
"requires": {
|
"requires": {
|
||||||
"MediaWiki": ">= 1.38.0"
|
"MediaWiki": ">= 1.39.0"
|
||||||
},
|
},
|
||||||
"APIModules": {
|
"APIModules": {
|
||||||
"scribunto-console": "MediaWiki\\Extension\\Scribunto\\ApiScribuntoConsole"
|
"scribunto-console": "MediaWiki\\Extension\\Scribunto\\ApiScribuntoConsole"
|
||||||
|
|
|
@ -114,7 +114,7 @@ class ScribuntoContentHandler extends CodeContentHandler {
|
||||||
$parserOptions = $cpoParams->getParserOptions();
|
$parserOptions = $cpoParams->getParserOptions();
|
||||||
$revId = $cpoParams->getRevId();
|
$revId = $cpoParams->getRevId();
|
||||||
$generateHtml = $cpoParams->getGenerateHtml();
|
$generateHtml = $cpoParams->getGenerateHtml();
|
||||||
$parser = MediaWikiServices::getInstance()->getParser();
|
$parser = MediaWikiServices::getInstance()->getParserFactory()->getInstance();
|
||||||
$text = $content->getText();
|
$text = $content->getText();
|
||||||
|
|
||||||
// Get documentation, if any
|
// Get documentation, if any
|
||||||
|
|
Loading…
Reference in a new issue