Index: trunk/extensions/CategoryWatch/CategoryWatch.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * @licence GNU General Public Licence 2.0 or later |
16 | 16 | */ |
17 | 17 | |
18 | | -define( 'CATEGORYWATCH_VERSION', '1.2.0, 2010-07-15' ); |
| 18 | +define( 'CATEGORYWATCH_VERSION', '1.2.1, 2010-08-05' ); |
19 | 19 | |
20 | 20 | # Whether or not to also send notificaton to the person who made the change |
21 | 21 | $wgCategoryWatchNotifyEditor = true; |
— | — | @@ -48,7 +48,7 @@ |
49 | 49 | /** |
50 | 50 | * Get a list of categories before article updated |
51 | 51 | */ |
52 | | - function onArticleSave( &$article, &$user, &$text ) { |
| 52 | + function onArticleSave( &$article, &$user, $text ) { |
53 | 53 | global $wgCategoryWatchUseAutoCat, $wgCategoryWatchUseAutoCatRealName; |
54 | 54 | |
55 | 55 | $this->before = array(); |
— | — | @@ -86,7 +86,7 @@ |
87 | 87 | /** |
88 | 88 | * Find changes in categorisation and send messages to watching users |
89 | 89 | */ |
90 | | - function onArticleSaveComplete( &$article, &$user, &$text, &$summary, &$medit ) { |
| 90 | + function onArticleSaveComplete( &$article, &$user, $text, $summary, $medit ) { |
91 | 91 | |
92 | 92 | # Get cats after update |
93 | 93 | $this->after = array(); |