Index: trunk/extensions/FlaggedRevs/FlaggedArticle.php |
— | — | @@ -820,7 +820,8 @@ |
821 | 821 | } |
822 | 822 | # Check action and if page is protected |
823 | 823 | $action = $wgRequest->getVal( 'action', 'view' ); |
824 | | - if( !self::isViewAction($action) ) { |
| 824 | + # Must be view/diff action...and title must not be ambiguous |
| 825 | + if( !self::isViewAction($action) || !$wgRequest->getVal('title') ) { |
825 | 826 | return true; |
826 | 827 | } |
827 | 828 | $this->addQuickReview( $data, $wgRequest->getVal('diff'), false ); |