diff options
Diffstat (limited to 'maintenance/importImages.inc.php')
-rw-r--r-- | maintenance/importImages.inc.php | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/maintenance/importImages.inc.php b/maintenance/importImages.inc.php index c8fbc541..9a68bac0 100644 --- a/maintenance/importImages.inc.php +++ b/maintenance/importImages.inc.php @@ -45,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 |