Index: trunk/extensions/FlaggedRevs/specialpages/Stabilization_body.php |
— | — | @@ -266,7 +266,7 @@ |
267 | 267 | # Insert a null revision |
268 | 268 | $nullRevision = Revision::newNullRevision( $dbw, $id, $comment, true ); |
269 | 269 | $nullRevId = $nullRevision->insertOn( $dbw ); |
270 | | - # Update page record |
| 270 | + # Update page record and touch page |
271 | 271 | $article = new Article( $this->page ); |
272 | 272 | $article->updateRevisionOn( $dbw, $nullRevision, $latest ); |
273 | 273 | wfRunHooks( 'NewRevisionFromEditComplete', array($article, $nullRevision, $latest) ); |
Index: trunk/extensions/FlaggedRevs/FlaggedRevs.hooks.php |
— | — | @@ -1105,7 +1105,7 @@ |
1106 | 1106 | public static function overrideRedirect( &$title, $request, &$ignoreRedirect, &$target ) { |
1107 | 1107 | # Get an instance on the title ($wgTitle) |
1108 | 1108 | $fa = FlaggedArticle::getTitleInstance( $title ); |
1109 | | - if( !$fa->isReviewable() ) { |
| 1109 | + if( !$fa->isReviewable(true) ) { |
1110 | 1110 | return true; |
1111 | 1111 | } |
1112 | 1112 | if( $request->getVal( 'stableid' ) ) { |