From: Chad Horohoe Date: Sat, 28 Nov 2009 06:26:39 +0000 (+0000) Subject: Rm another file from js2 de-merge X-Git-Tag: 1.31.0-rc.0~38689 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22articles%22%2C%22id_article=%24id_article%22%29%20.%20%22?a=commitdiff_plain;h=8372a1a4048a7e92e252833ae783eb404087d780;p=lhc%2Fweb%2Fwiklou.git Rm another file from js2 de-merge --- diff --git a/maintenance/http_session_download.php b/maintenance/http_session_download.php deleted file mode 100644 index 3abaaf6296..0000000000 --- a/maintenance/http_session_download.php +++ /dev/null @@ -1,60 +0,0 @@ -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() { - - wfProfileIn(__METHOD__); - - //run the download: - Http::doSessionIdDownload( $this->getOption('sid'), $this->getOption('usk') ); - - // close up shop: - // Execute any deferred updates - wfDoUpdates(); - - // Log what the user did, for book-keeping purposes. - wfLogProfilingData(); - - // Shut down the database before exit - wfGetLBFactory()->shutdown(); - - wfProfileOut(__METHOD__); - } -} - -$maintClass = "HttpSessionDownload"; -require_once( DO_MAINTENANCE );