* Inlinise the only usage of $user in MediaWiki::main()
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Mon, 19 Dec 2011 16:05:47 +0000 (16:05 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Mon, 19 Dec 2011 16:05:47 +0000 (16:05 +0000)
* Change the name of the variable containing the WikiPage object for more consistency

includes/Wiki.php

index 2a3444e..4984b5f 100644 (file)
@@ -583,7 +583,6 @@ class MediaWiki {
                # Set title from request parameters
                $wgTitle = $this->getTitle();
                $action = $this->getAction();
-               $user = $this->context->getUser();
 
                # Send Ajax requests to the Ajax dispatcher.
                if ( $wgUseAjax && $action == 'ajax' ) {
@@ -605,8 +604,8 @@ class MediaWiki {
                                                $cache->loadFromFileCache( $this->context );
                                        }
                                        # Do any stats increment/watchlist stuff
-                                       $article = WikiPage::factory( $this->getTitle() );
-                                       $article->doViewUpdates( $user );
+                                       $page = WikiPage::factory( $this->getTitle() );
+                                       $page->doViewUpdates( $this->context->getUser() );
                                        # Tell OutputPage that output is taken care of
                                        $this->context->getOutput()->disable();
                                        wfProfileOut( 'main-try-filecache' );