Index: trunk/extensions/SemanticWatchlist/specials/SpecialSemanticWatchlist.php |
— | — | @@ -244,7 +244,7 @@ |
245 | 245 | |
246 | 246 | $changeSetsHTML = array(); |
247 | 247 | |
248 | | - foreach ( $sets as $set ) { |
| 248 | + foreach ( $sets as /* SWLChangeSet */ $set ) { |
249 | 249 | $dayKey = substr( $set->getEdit()->getTime(), 0, 8 ); // Get the YYYYMMDD part. |
250 | 250 | |
251 | 251 | if ( !array_key_exists( $dayKey, $changeSetsHTML ) ) { |
Index: trunk/extensions/SemanticWatchlist/RELEASE-NOTES |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | |
7 | 7 | |
8 | 8 | === Version 0.1 === |
9 | | -2011-07-3x |
| 9 | +2011-07-30 |
10 | 10 | |
11 | 11 | Initial release with these features: |
12 | 12 | |
Index: trunk/extensions/SemanticWatchlist/SemanticWatchlist.php |
— | — | @@ -37,7 +37,7 @@ |
38 | 38 | die( '<b>Error:</b> Semantic Watchlist requires Semantic MediaWiki 1.6 or above.' ); |
39 | 39 | } |
40 | 40 | |
41 | | -define( 'SemanticWatchlist_VERSION', '0.1 RC1' ); |
| 41 | +define( 'SemanticWatchlist_VERSION', '0.1' ); |
42 | 42 | |
43 | 43 | $wgExtensionCredits[defined( 'SEMANTIC_EXTENSION_TYPE' ) ? 'semantic' : 'other'][] = array( |
44 | 44 | 'path' => __FILE__, |