Index: trunk/phase3/includes/specials/SpecialFilepath.php |
— | — | @@ -39,7 +39,7 @@ |
40 | 40 | $request = $this->getRequest(); |
41 | 41 | $file = !is_null( $par ) ? $par : $request->getText( 'file' ); |
42 | 42 | |
43 | | - $title = Title::makeTitleSafe( NS_FILE, $file ); |
| 43 | + $title = Title::newFromText( $file, NS_FILE ); |
44 | 44 | |
45 | 45 | if ( ! $title instanceof Title || $title->getNamespace() != NS_FILE ) { |
46 | 46 | $this->showForm( $title ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -4503,10 +4503,8 @@ |
4504 | 4504 | 'filepath-page' => 'File:', |
4505 | 4505 | 'filepath-submit' => 'Go', |
4506 | 4506 | 'filepath-summary' => 'This special page returns the complete path for a file. |
4507 | | -Images are shown in full resolution, other file types are started with their associated program directly. |
| 4507 | +Images are shown in full resolution, other file types are started with their associated program directly.', |
4508 | 4508 | |
4509 | | -Enter the file name without the "{{ns:file}}:" prefix.', |
4510 | | - |
4511 | 4509 | # Special:FileDuplicateSearch |
4512 | 4510 | 'fileduplicatesearch' => 'Search for duplicate files', |
4513 | 4511 | 'fileduplicatesearch-summary' => 'Search for duplicate files based on hash values.', |