also fix image names with magic tildes in them, got a few on enwiki
authorIlmari Karonen <vyznev@users.mediawiki.org>
Fri, 21 Nov 2008 06:08:31 +0000 (06:08 +0000)
committerIlmari Karonen <vyznev@users.mediawiki.org>
Fri, 21 Nov 2008 06:08:31 +0000 (06:08 +0000)
maintenance/cleanupImages.php

index df765d8..69333fe 100644 (file)
@@ -167,7 +167,7 @@ class ImageCleanup extends TableCleanup {
        function buildSafeTitle( $name ) {
                global $wgLegalTitleChars;
                $x = preg_replace_callback(
-                       "/([^$wgLegalTitleChars])/",
+                       "/([^$wgLegalTitleChars]|~)/",
                        array( $this, 'hexChar' ),
                        $name );