From 87c6b6b1145e5163873f1dc818a0ab34e0662215 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 21 Mar 2010 14:55:32 +0000 Subject: [PATCH] Fixed some doxygen warnings and documented a little bit --- maintenance/dumpUploads.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/maintenance/dumpUploads.php b/maintenance/dumpUploads.php index c8f1667b08..0bc411092a 100644 --- a/maintenance/dumpUploads.php +++ b/maintenance/dumpUploads.php @@ -64,10 +64,9 @@ By default, outputs relative paths against the parent directory of \$wgUploadDir } /** - * Fetch a list of all or used images from a particular image source. - * @param string $table - * @param string $directory Base directory where files are located - * @param bool $shared true to pass shared-dir settings to hash func + * Fetch a list of used images from a particular image source. + * + * @param $shared Boolean: true to pass shared-dir settings to hash func */ function fetchUsed( $shared ) { $dbr = wfGetDB( DB_SLAVE ); @@ -86,6 +85,11 @@ By default, outputs relative paths against the parent directory of \$wgUploadDir $dbr->freeResult( $result ); } + /** + * Fetch a list of all images from a particular image source. + * + * @param $shared Boolean: true to pass shared-dir settings to hash func + */ function fetchLocal( $shared ) { $dbr = wfGetDB( DB_SLAVE ); $result = $dbr->select( 'image', -- 2.20.1