From 1ea75a286a6e1b5e181348c752eb892bd2f38de7 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 3 Aug 2009 22:05:03 +0000 Subject: [PATCH] Move populateSha1.php up from archives into maintenance root (nothing calls this automatically, so it shouldn't break anything) --- maintenance/{archives => }/populateSha1.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) rename maintenance/{archives => }/populateSha1.php (96%) diff --git a/maintenance/archives/populateSha1.php b/maintenance/populateSha1.php similarity index 96% rename from maintenance/archives/populateSha1.php rename to maintenance/populateSha1.php index 487d3bad5c..6862ee8d03 100644 --- a/maintenance/archives/populateSha1.php +++ b/maintenance/populateSha1.php @@ -7,7 +7,7 @@ */ $optionsWithArgs = array( 'method' ); -require_once( dirname(__FILE__).'/../commandLine.inc' ); +require_once( dirname(__FILE__).'/commandLine.inc' ); $method = isset( $options['method'] ) ? $options['method'] : 'normal'; $t = -microtime( true ); @@ -55,5 +55,3 @@ if ( $method == 'pipe' ) { } $t += microtime( true ); printf( "\nDone %d files in %.1f seconds\n", $numRows, $t ); - -?> -- 2.20.1