Index: branches/REL1_16/extensions/Wikilog/maintenance/wikilogImportDocumentation.php |
— | — | @@ -166,7 +166,7 @@ |
167 | 167 | $this->output( " uploading..." ); |
168 | 168 | $filepath = dirname( $this->mFilename ) . '/' . $base; |
169 | 169 | $archive = $image->upload( $filepath, $this->mComment, |
170 | | - $revision->getText(), 0, false, $this->mTimeStamp, |
| 170 | + $revision->getText(), 0, false, $this->mTimestamp, |
171 | 171 | $this->mUser); |
172 | 172 | |
173 | 173 | if ( WikiError::isError( $archive ) || !$archive->isGood() ) { |
Index: branches/REL1_16/extensions/Wikilog/Wikilog.php |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | $wgExtensionCredits['specialpage'][] = array( |
37 | 37 | 'path' => __FILE__, |
38 | 38 | 'name' => 'Wikilog', |
39 | | - 'version' => '1.1.0', |
| 39 | + 'version' => '1.1.1', |
40 | 40 | 'author' => 'Juliano F. Ravasi', |
41 | 41 | 'descriptionmsg' => 'wikilog-desc', |
42 | 42 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Wikilog', |
Index: branches/REL1_16/extensions/Wikilog/WlFeed.php |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | $wgExtensionCredits['other'][] = array( |
37 | 37 | 'path' => __FILE__, |
38 | 38 | 'name' => 'WlFeed', |
39 | | - 'version' => '1.1.0', |
| 39 | + 'version' => '1.1.1', |
40 | 40 | 'author' => 'Juliano F. Ravasi', |
41 | 41 | 'descriptionmsg' => 'wlfeed-desc', |
42 | 42 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Wikilog', |
Index: branches/REL1_16/extensions/Wikilog/RELEASE-NOTES |
— | — | @@ -1,5 +1,17 @@ |
2 | 2 | = Wikilog release notes = |
3 | 3 | |
| 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 | + |
4 | 16 | == Wikilog 1.1.0 == |
5 | 17 | |
6 | 18 | Aug 8, 2010 |
Index: branches/REL1_16/extensions/Wikilog/WikilogParser.php |
— | — | @@ -626,7 +626,7 @@ |
627 | 627 | class WikilogParserCache |
628 | 628 | extends ParserCache |
629 | 629 | { |
630 | | - public static function &singleton() { |
| 630 | + public static function singleton() { |
631 | 631 | static $instance; |
632 | 632 | if ( !isset( $instance ) ) { |
633 | 633 | global $parserMemc; |
— | — | @@ -635,7 +635,7 @@ |
636 | 636 | return $instance; |
637 | 637 | } |
638 | 638 | |
639 | | - public function getKey( &$article, $popts ) { |
| 639 | + public function getKey( $article, $popts ) { |
640 | 640 | if ( $popts instanceof User ) // API change in MediaWiki 1.15. |
641 | 641 | $popts = ParserOptions::newFromUser( $popts ); |
642 | 642 | |