Index: branches/REL1_14/phase3/includes/filerepo/ArchivedFile.php |
— | — | @@ -74,16 +74,16 @@ |
75 | 75 | } |
76 | 76 | $conds = array(); |
77 | 77 | |
78 | | - if( $this->id > 0 ) |
| 78 | + if ($this->id>0) |
79 | 79 | $conds['fa_id'] = $this->id; |
80 | | - if( $this->key ) { |
81 | | - $conds['fa_storage_group'] = $this->group; |
| 80 | + if ($this->key) { |
| 81 | + $conds['fa_storage_group'] = $this->group; |
82 | 82 | $conds['fa_storage_key'] = $this->key; |
83 | 83 | } |
84 | | - if( $this->title ) |
| 84 | + if ($this->title) |
85 | 85 | $conds['fa_name'] = $this->title->getDBkey(); |
86 | 86 | |
87 | | - if( !count($conds)) |
| 87 | + if (!count($conds)) |
88 | 88 | throw new MWException( "No specific information for retrieving archived file" ); |
89 | 89 | |
90 | 90 | if( !$this->title || $this->title->getNamespace() == NS_FILE ) { |
Index: branches/REL1_14/phase3/includes/DefaultSettings.php |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | } |
35 | 35 | |
36 | 36 | /** MediaWiki version number */ |
37 | | -$wgVersion = '1.14.0'; |
| 37 | +$wgVersion = '1.14.1'; |
38 | 38 | |
39 | 39 | /** Name of the site. It must be changed in LocalSettings.php */ |
40 | 40 | $wgSitename = 'MediaWiki'; |
Index: branches/REL1_14/phase3/RELEASE-NOTES |
— | — | @@ -3,11 +3,11 @@ |
4 | 4 | Security reminder: MediaWiki does not require PHP's register_globals |
5 | 5 | setting since version 1.2.0. If you have it on, turn it *off* if you can. |
6 | 6 | |
7 | | -== MediaWiki 1.14.0 == |
| 7 | +== MediaWiki 1.14.1 == |
8 | 8 | |
9 | | -February 22, 2009 |
| 9 | +July 14, 2009 |
10 | 10 | |
11 | | -This is the first stable release of the 2009 Q1 branch of MediaWiki. |
| 11 | +This is a security and bugfix release of the 2009 Q1 branch of MediaWiki. |
12 | 12 | |
13 | 13 | MediaWiki is now using a "continuous integration" development model with |
14 | 14 | quarterly snapshot releases. The latest development code is always kept |
— | — | @@ -21,14 +21,18 @@ |
22 | 22 | it from source control: http://www.mediawiki.org/wiki/Download_from_SVN |
23 | 23 | |
24 | 24 | NOTE: Installation of MediaWiki on SQLite has been temporarily disabled in this |
25 | | -release due to the discovery of serious problems with the schema. We expect to |
26 | | -fix this problem for the release of 1.15.0. |
| 25 | +release due to the discovery of serious problems with the schema. This was |
| 26 | +fixed in 1.15.0. |
27 | 27 | |
28 | 28 | == Changes since 1.14.0 == |
| 29 | + |
29 | 30 | * (bug 17737) Fixed russian URLs for Special:BookSources |
30 | 31 | * (bug 17713) Using links with only an anchor no longer add an dummy entry in |
31 | 32 | the pagelinks table |
32 | 33 | * (bug 17897) Fixed string offset error in <pre> tags |
| 34 | +* (bug 17832) Fixed action=delete returning 'unknownerror' instead of |
| 35 | + 'permissiondenied' when the user is blocked |
| 36 | +* Fixed performance regression when accessing deleted (archived) files |
33 | 37 | |
34 | 38 | == Changes since 1.14.0rc1 == |
35 | 39 | |