r83426 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r83425‎ | r83426 | r83427 >
Date:00:03, 7 March 2011
Author:juliano
Status:deferred
Tags:
Comment:
Backported from trunk: r75185 r83424. Wikilog v1.1.1.
Modified paths:
  • /branches/REL1_16/extensions/Wikilog/RELEASE-NOTES (modified) (history)
  • /branches/REL1_16/extensions/Wikilog/Wikilog.php (modified) (history)
  • /branches/REL1_16/extensions/Wikilog/WikilogParser.php (modified) (history)
  • /branches/REL1_16/extensions/Wikilog/WlFeed.php (modified) (history)
  • /branches/REL1_16/extensions/Wikilog/maintenance/wikilogImportDocumentation.php (modified) (history)

Diff [purge]

Index: branches/REL1_16/extensions/Wikilog/maintenance/wikilogImportDocumentation.php
@@ -166,7 +166,7 @@
167167 $this->output( " uploading..." );
168168 $filepath = dirname( $this->mFilename ) . '/' . $base;
169169 $archive = $image->upload( $filepath, $this->mComment,
170 - $revision->getText(), 0, false, $this->mTimeStamp,
 170+ $revision->getText(), 0, false, $this->mTimestamp,
171171 $this->mUser);
172172
173173 if ( WikiError::isError( $archive ) || !$archive->isGood() ) {
Index: branches/REL1_16/extensions/Wikilog/Wikilog.php
@@ -35,7 +35,7 @@
3636 $wgExtensionCredits['specialpage'][] = array(
3737 'path' => __FILE__,
3838 'name' => 'Wikilog',
39 - 'version' => '1.1.0',
 39+ 'version' => '1.1.1',
4040 'author' => 'Juliano F. Ravasi',
4141 'descriptionmsg' => 'wikilog-desc',
4242 'url' => 'http://www.mediawiki.org/wiki/Extension:Wikilog',
Index: branches/REL1_16/extensions/Wikilog/WlFeed.php
@@ -35,7 +35,7 @@
3636 $wgExtensionCredits['other'][] = array(
3737 'path' => __FILE__,
3838 'name' => 'WlFeed',
39 - 'version' => '1.1.0',
 39+ 'version' => '1.1.1',
4040 'author' => 'Juliano F. Ravasi',
4141 'descriptionmsg' => 'wlfeed-desc',
4242 'url' => 'http://www.mediawiki.org/wiki/Extension:Wikilog',
Index: branches/REL1_16/extensions/Wikilog/RELEASE-NOTES
@@ -1,5 +1,17 @@
22 = Wikilog release notes =
33
 4+== Wikilog 1.1.1 ==
 5+
 6+=== General notes ===
 7+
 8+This is a bugfix release for the 1.1.x branch of Wikilog.
 9+
 10+=== Bug fixes ===
 11+
 12+* (mw:bug 27904) Fixed method signature compatibility with Mw1.16 for
 13+ WikilogParserCache.
 14+
 15+
416 == Wikilog 1.1.0 ==
517
618 Aug 8, 2010
Index: branches/REL1_16/extensions/Wikilog/WikilogParser.php
@@ -626,7 +626,7 @@
627627 class WikilogParserCache
628628 extends ParserCache
629629 {
630 - public static function &singleton() {
 630+ public static function singleton() {
631631 static $instance;
632632 if ( !isset( $instance ) ) {
633633 global $parserMemc;
@@ -635,7 +635,7 @@
636636 return $instance;
637637 }
638638
639 - public function getKey( &$article, $popts ) {
 639+ public function getKey( $article, $popts ) {
640640 if ( $popts instanceof User ) // API change in MediaWiki 1.15.
641641 $popts = ParserOptions::newFromUser( $popts );
642642

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r75185Fix case of instance variable. It seems that newer versions of PHP are...juliano05:17, 22 October 2010
r83424Method signatures for ParserCache changed in r52888; updated to keep...juliano23:45, 6 March 2011

Status & tagging log