Index: trunk/phase3/includes/SpecialUpload.php |
— | — | @@ -308,8 +308,8 @@ |
309 | 309 | $partname .= '.' . $ext[$i]; |
310 | 310 | } |
311 | 311 | |
312 | | - if( strlen( $partname ) < 3 ) { |
313 | | - $this->mainUploadForm( wfMsgHtml( 'minlength' ) ); |
| 312 | + if( strlen( $partname ) < 1 ) { |
| 313 | + $this->mainUploadForm( wfMsgHtml( 'minlength1' ) ); |
314 | 314 | return; |
315 | 315 | } |
316 | 316 | |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1361,7 +1361,7 @@ |
1362 | 1362 | 'uploadedfiles' => 'Uploaded files', |
1363 | 1363 | 'ignorewarning' => 'Ignore warning and save file anyway.', |
1364 | 1364 | 'ignorewarnings' => 'Ignore any warnings', |
1365 | | -'minlength' => 'File names must be at least three letters.', |
| 1365 | +'minlength1' => 'File names must be at least one letter.', |
1366 | 1366 | 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles. Please rename the file and try uploading it again.', |
1367 | 1367 | 'badfilename' => 'File name has been changed to "$1".', |
1368 | 1368 | 'filetype-badmime' => 'Files of the MIME type "$1" are not allowed to be uploaded.', |
Index: trunk/phase3/languages/messages/MessagesHe.php |
— | — | @@ -1025,7 +1025,7 @@ |
1026 | 1026 | 'uploadedfiles' => 'קבצים שהועלו', |
1027 | 1027 | 'ignorewarning' => 'התעלם מהאזהרה ושמור את הקובץ בכל זאת.', |
1028 | 1028 | 'ignorewarnings' => 'התעלם מכל האזהרות', |
1029 | | -'minlength' => 'שמות של קבצי תמונה צריכים להיות בני שלושה תווים לפחות.', |
| 1029 | +'minlength1' => 'שמות של קבצי תמונה צריכים להיות בני תו אחד לפחות.', |
1030 | 1030 | 'illegalfilename' => 'הקובץ "$1" מכיל תוים בלתי חוקיים. אנא שנו את שמו ונסו להעלותו שנית.', |
1031 | 1031 | 'badfilename' => 'שם התמונה שונה ל־"$1".', |
1032 | 1032 | 'filetype-badmime' => 'לא ניתן להעלות קבצים עם סוג ה־MIME "$1".', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -100,6 +100,7 @@ |
101 | 101 | * (bug 10326) AJAX-based page watching and unwatching has been cleaned up and |
102 | 102 | enabled by default. |
103 | 103 | * Added option to install to MyISAM |
| 104 | +* (bug 9250) Remove hardcoded minimum image name length of three characters |
104 | 105 | |
105 | 106 | == Bugfixes since 1.10 == |
106 | 107 | |