Index: branches/REL1_18/phase3/includes/specials/SpecialFilepath.php |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | |
42 | 42 | $file = !is_null( $par ) ? $par : $wgRequest->getText( 'file' ); |
43 | 43 | |
44 | | - $title = Title::makeTitleSafe( NS_FILE, $file ); |
| 44 | + $title = Title::newFromText( $file, NS_FILE ); |
45 | 45 | |
46 | 46 | if ( ! $title instanceof Title || $title->getNamespace() != NS_FILE ) { |
47 | 47 | $this->showForm( $title ); |
Index: branches/REL1_18/phase3/languages/messages/MessagesEn.php |
— | — | @@ -4490,10 +4490,8 @@ |
4491 | 4491 | 'filepath-page' => 'File:', |
4492 | 4492 | 'filepath-submit' => 'Go', |
4493 | 4493 | 'filepath-summary' => 'This special page returns the complete path for a file. |
4494 | | -Images are shown in full resolution, other file types are started with their associated program directly. |
| 4494 | +Images are shown in full resolution, other file types are started with their associated program directly.', |
4495 | 4495 | |
4496 | | -Enter the file name without the "{{ns:file}}:" prefix.', |
4497 | | - |
4498 | 4496 | # Special:FileDuplicateSearch |
4499 | 4497 | 'fileduplicatesearch' => 'Search for duplicate files', |
4500 | 4498 | 'fileduplicatesearch-summary' => 'Search for duplicate files based on hash values.', |