diff options
Diffstat (limited to 'extensions/Cite/Cite_body.php')
-rw-r--r-- | extensions/Cite/Cite_body.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/extensions/Cite/Cite_body.php b/extensions/Cite/Cite_body.php index 08c60722..27432f47 100644 --- a/extensions/Cite/Cite_body.php +++ b/extensions/Cite/Cite_body.php @@ -155,7 +155,6 @@ class Cite { * @return string */ function ref( $str, $argv, $parser ) { - global $wgCiteEnablePopups; if ( $this->mInCite ) { return htmlspecialchars( "<ref>$str</ref>" ); } else { @@ -163,12 +162,6 @@ class Cite { $this->mInCite = true; $ret = $this->guardedRef( $str, $argv, $parser ); $this->mInCite = false; - $parserOutput = $parser->getOutput(); - $parserOutput->addModules( 'ext.cite' ); - if ( $wgCiteEnablePopups ) { - $parserOutput->addModules( 'ext.cite.popups' ); - } - $parserOutput->addModuleStyles( 'ext.rtlcite' ); return $ret; } } |