Index: trunk/phase3/includes/specials/SpecialFewestrevisions.php |
— | — | @@ -32,7 +32,7 @@ |
33 | 33 | function __construct( $name = 'Fewestrevisions' ) { |
34 | 34 | parent::__construct( $name ); |
35 | 35 | } |
36 | | - |
| 36 | + |
37 | 37 | function isExpensive() { |
38 | 38 | return true; |
39 | 39 | } |
— | — | @@ -56,8 +56,7 @@ |
57 | 57 | // useful to remove this. People _do_ create pages |
58 | 58 | // and never revise them, they aren't necessarily |
59 | 59 | // redirects. |
60 | | - 'GROUP BY' => 'page_namespace, page_title, ' . |
61 | | - 'page_is_redirect' ) |
| 60 | + 'GROUP BY' => 'page_namespace, page_title, page_is_redirect' ) |
62 | 61 | ); |
63 | 62 | } |
64 | 63 | |