Index: trunk/extensions/FlaggedRevs/FlaggedRevs.php |
— | — | @@ -88,7 +88,7 @@ |
89 | 89 | $wgGroupPermissions['editor']['review'] = true; |
90 | 90 | $wgGroupPermissions['editor']['autopatrol'] = true; |
91 | 91 | $wgGroupPermissions['editor']['patrol'] = true; |
92 | | -$wgGroupPermissions['editor']['unwatched'] = true; |
| 92 | +$wgGroupPermissions['editor']['unwatchedpages'] = true; |
93 | 93 | $wgGroupPermissions['editor']['autoconfirmed'] = true; |
94 | 94 | |
95 | 95 | # Defines extra rights for advanced reviewer class |
Index: trunk/extensions/FlaggedRevs/FlaggedRevsPage.body.php |
— | — | @@ -354,6 +354,8 @@ |
355 | 355 | |
356 | 356 | # Clear the cache... |
357 | 357 | $this->page->invalidateCache(); |
| 358 | + # Might as well save the cache |
| 359 | + $parserCache->save( $poutput, $article, $wgUser ); |
358 | 360 | # Purge squid for this page only |
359 | 361 | $this->page->purgeSquid(); |
360 | 362 | |
— | — | @@ -400,6 +402,8 @@ |
401 | 403 | |
402 | 404 | # Clear the cache... |
403 | 405 | $this->page->invalidateCache(); |
| 406 | + # Might as well save the cache |
| 407 | + $parserCache->save( $poutput, $article, $wgUser ); |
404 | 408 | # Purge squid for this page only |
405 | 409 | $this->page->purgeSquid(); |
406 | 410 | |