follow up r60999 - remove reference to $wgUseNormalUser
authorMark A. Hershberger <mah@users.mediawiki.org>
Thu, 14 Jan 2010 00:57:59 +0000 (00:57 +0000)
committerMark A. Hershberger <mah@users.mediawiki.org>
Thu, 14 Jan 2010 00:57:59 +0000 (00:57 +0000)
maintenance/httpSessionDownload.php

index 1e927a7..cab6e87 100644 (file)
@@ -27,12 +27,10 @@ require_once( dirname(__FILE__) . '/Maintenance.php' );
 
 class HttpSessionDownload extends Maintenance {
        public function __construct() {
-               global $wgUseNormalUser;
                parent::__construct();
                $this->mDescription = "Simple entry point to initiate a background download";
                $this->addOption( 'sid',  'Session ID', true, true );
                $this->addOption( 'usk',  'Upload session key', true, true );
-               $wgUseNormalUser = true;
        }
 
        public function execute() {