Fix description
[lhc/web/wiklou.git] / maintenance / importImages.inc.php
index bf48c0c..9a68bac 100644 (file)
@@ -3,8 +3,7 @@
 /**
  * Support functions for the importImages script
  *
- * @package MediaWiki
- * @subpackage Maintenance
+ * @addtogroup Maintenance
  * @author Rob Church <robchur@gmail.com>
  */
 
@@ -20,7 +19,7 @@ function findFiles( $dir, $exts ) {
                if( $dhl = opendir( $dir ) ) {
                        while( ( $file = readdir( $dhl ) ) !== false ) {
                                if( is_file( $dir . '/' . $file ) ) {
-                                       list( $name, $ext ) = splitFilename( $dir . '/' . $file );
+                                       list( /* $name */, $ext ) = splitFilename( $dir . '/' . $file );
                                        if( array_search( strtolower( $ext ), $exts ) !== false )
                                                $files[] = $dir . '/' . $file;
                                }
@@ -46,22 +45,4 @@ function splitFilename( $filename ) {
        unset( $parts[ count( $parts ) - 1 ] );
        $fname = implode( '.', $parts );
        return array( $fname, $ext );
-}
-
-/**
- * Given an image hash, check that the structure exists to save the image file
- * and create it if it doesn't
- *
- * @param $hash Part of an image hash, e.g. /f/fd/
- */
-function makeHashPath( $hash ) {
-       global $wgUploadDirectory;
-       $parts = explode( '/', substr( $hash, 1, strlen( $hash ) - 2 ) );
-       if( !is_dir( $wgUploadDirectory . '/' . $parts[0] ) )
-               mkdir( $wgUploadDirectory . '/' . $parts[0] );
-       if( !is_dir( $wgUploadDirectory . '/' . $hash ) )
-               mkdir( $wgUploadDirectory . '/' . $hash );
-}
-
-
-?>
\ No newline at end of file
+}
\ No newline at end of file