From 8372a1a4048a7e92e252833ae783eb404087d780 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sat, 28 Nov 2009 06:26:39 +0000 Subject: [PATCH] Rm another file from js2 de-merge --- maintenance/http_session_download.php | 60 --------------------------- 1 file changed, 60 deletions(-) delete mode 100644 maintenance/http_session_download.php 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 ); -- 2.20.1