From: Alexandre Emsenhuber Date: Sun, 21 Mar 2010 14:55:32 +0000 (+0000) Subject: Fixed some doxygen warnings and documented a little bit X-Git-Tag: 1.31.0-rc.0~37396 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=87c6b6b1145e5163873f1dc818a0ab34e0662215;p=lhc%2Fweb%2Fwiklou.git Fixed some doxygen warnings and documented a little bit --- 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',