r53178 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r53177‎ | r53178 | r53179 >
Date:16:25, 13 July 2009
Author:tstarling
Status:deferred
Tags:
Comment:
* Updates for release of 1.14.0
* Reverted formatting changes from r48646
* Added release notes for r48123 and r48646
Modified paths:
  • /branches/REL1_14/phase3/RELEASE-NOTES (modified) (history)
  • /branches/REL1_14/phase3/includes/DefaultSettings.php (modified) (history)
  • /branches/REL1_14/phase3/includes/filerepo/ArchivedFile.php (modified) (history)

Diff [purge]

Index: branches/REL1_14/phase3/includes/filerepo/ArchivedFile.php
@@ -74,16 +74,16 @@
7575 }
7676 $conds = array();
7777
78 - if( $this->id > 0 )
 78+ if ($this->id>0)
7979 $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;
8282 $conds['fa_storage_key'] = $this->key;
8383 }
84 - if( $this->title )
 84+ if ($this->title)
8585 $conds['fa_name'] = $this->title->getDBkey();
8686
87 - if( !count($conds))
 87+ if (!count($conds))
8888 throw new MWException( "No specific information for retrieving archived file" );
8989
9090 if( !$this->title || $this->title->getNamespace() == NS_FILE ) {
Index: branches/REL1_14/phase3/includes/DefaultSettings.php
@@ -33,7 +33,7 @@
3434 }
3535
3636 /** MediaWiki version number */
37 -$wgVersion = '1.14.0';
 37+$wgVersion = '1.14.1';
3838
3939 /** Name of the site. It must be changed in LocalSettings.php */
4040 $wgSitename = 'MediaWiki';
Index: branches/REL1_14/phase3/RELEASE-NOTES
@@ -3,11 +3,11 @@
44 Security reminder: MediaWiki does not require PHP's register_globals
55 setting since version 1.2.0. If you have it on, turn it *off* if you can.
66
7 -== MediaWiki 1.14.0 ==
 7+== MediaWiki 1.14.1 ==
88
9 -February 22, 2009
 9+July 14, 2009
1010
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.
1212
1313 MediaWiki is now using a "continuous integration" development model with
1414 quarterly snapshot releases. The latest development code is always kept
@@ -21,14 +21,18 @@
2222 it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
2323
2424 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.
2727
2828 == Changes since 1.14.0 ==
 29+
2930 * (bug 17737) Fixed russian URLs for Special:BookSources
3031 * (bug 17713) Using links with only an anchor no longer add an dummy entry in
3132 the pagelinks table
3233 * (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
3337
3438 == Changes since 1.14.0rc1 ==
3539

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r48123Backporting r48122 to 1.14 branchcatrope13:02, 7 March 2009
r48646Backported r48644aaron20:45, 20 March 2009

Status & tagging log