Merge "Call MWDebug::getHTMLDebugLog() directly"

This commit is contained in:
jenkins-bot 2020-07-06 16:09:04 +00:00 committed by Gerrit Code Review
commit 08b26f072a

View file

@ -119,8 +119,8 @@ class SkinVector extends SkinTemplate {
// Result of OutputPage::addHTML calls // Result of OutputPage::addHTML calls
'html-bodycontent' => $this->wrapHTML( $title, $out->mBodytext ), 'html-bodycontent' => $this->wrapHTML( $title, $out->mBodytext ),
'html-dataAfterContent' => $this->afterContentHook(), 'html-dataAfterContent' => $this->afterContentHook(),
// From MWDebug::getHTMLDebugLog (when $wgShowDebug is enabled) // When $wgShowDebug is enabled
'html-debuglog' => $this->generateDebugHTML(), 'html-debuglog' => MWDebug::getHTMLDebugLog(),
]; ];
} }