added PPCustomFrame classes to restore ability to use replaceVariables with a custom...
[lhc/web/wiklou.git] / maintenance / importImages.inc.php
index e3ff69a..5389577 100644 (file)
@@ -3,8 +3,8 @@
 /**
  * Support functions for the importImages script
  *
- * @package MediaWiki
- * @subpackage Maintenance
+ * @file
+ * @ingroup Maintenance
  * @author Rob Church <robchur@gmail.com>
  */
 
@@ -46,22 +46,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