also fix image names with magic tildes in them, got a few on enwiki

This commit is contained in:
Ilmari Karonen 2008-11-21 06:08:31 +00:00
parent d64452ffe1
commit f7c0be43eb

View file

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