aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorHappy-melon <happy-melon@users.mediawiki.org>2011-04-17 19:25:30 +0000
committerHappy-melon <happy-melon@users.mediawiki.org>2011-04-17 19:25:30 +0000
commit400357e90af84da3dacd8e15ac221d74e952586c (patch)
tree110d588e6d40ec74801710e9e2ecae14f5ae74fe /index.php
parent0238304e39a1329f32ca117c5fc05400344d62e8 (diff)
downloadmediawikicore-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.php2
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();