diff options
author | Happy-melon <happy-melon@users.mediawiki.org> | 2011-04-17 19:25:30 +0000 |
---|---|---|
committer | Happy-melon <happy-melon@users.mediawiki.org> | 2011-04-17 19:25:30 +0000 |
commit | 400357e90af84da3dacd8e15ac221d74e952586c (patch) | |
tree | 110d588e6d40ec74801710e9e2ecae14f5ae74fe /index.php | |
parent | 0238304e39a1329f32ca117c5fc05400344d62e8 (diff) | |
download | mediawikicore-400357e90af84da3dacd8e15ac221d74e952586c.tar.gz mediawikicore-400357e90af84da3dacd8e15ac221d74e952586c.zip |
Follow-up r85929: update MediaWiki::articleFromTitle() calls in extensions (and a few edgecases which were missed in core)
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/86273
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php index 32ab38472aba..6c09dca32811 100644 --- a/index.php +++ b/index.php @@ -119,7 +119,7 @@ if ( $wgUseFileCache && $wgTitle !== null ) { $cache->loadFromFileCache(); } # Do any stats increment/watchlist stuff - $wgArticle = MediaWiki::articleFromTitle( $wgTitle ); + $wgArticle = MediaWiki::articleFromTitle( $wgTitle, $context ); $wgArticle->viewUpdates(); # Tell OutputPage that output is taken care of $context->output->disable(); |