Fixing issue with IE not showing thumbs with non-ASCII-chars in their name
authorJens Frank <jeluf@users.mediawiki.org>
Sun, 1 Feb 2004 23:43:42 +0000 (23:43 +0000)
committerJens Frank <jeluf@users.mediawiki.org>
Sun, 1 Feb 2004 23:43:42 +0000 (23:43 +0000)
includes/GlobalFunctions.php

index 88ec901..33e3a0e 100644 (file)
@@ -137,7 +137,7 @@ function wfImageArchiveUrl( $name, $subdir="archive" )
        $hash = md5( $name );
        $url = "{$wgUploadPath}/{$subdir}/" . $hash{0} . "/" .
          substr( $hash, 0, 2 ) . "/{$name}";
-       return $url;
+       return wfUrlencode($url);
 }
 
 function wfUrlencode ( $s )