summaryrefslogtreecommitdiff
path: root/maintenance/importImages.inc.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2007-09-14 13:18:58 +0200
committerPierre Schmitz <pierre@archlinux.de>2007-09-14 13:18:58 +0200
commit8f416baead93a48e5799e44b8bd2e2c4859f4e04 (patch)
treecd47ac55eb80a39e3225e8b4f3161b88ea16c2cf /maintenance/importImages.inc.php
parentd7d08bd1a17618c7d77a6b9b2989e9f7293d6ed6 (diff)
auf Version 1.11 aktualisiert; Login-Bug behoben
Diffstat (limited to 'maintenance/importImages.inc.php')
-rw-r--r--maintenance/importImages.inc.php20
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