Index: trunk/phase3/includes/specials/SpecialWantedpages.php |
— | — | @@ -64,12 +64,14 @@ |
65 | 65 | NS_MEDIAWIKI . "'" ), |
66 | 66 | 'options' => array ( 'HAVING' => "COUNT(*) > $count", |
67 | 67 | 'GROUP BY' => 'pl_namespace, pl_title' ), |
68 | | - 'join_conds' => array ( 'pg1' => array ( |
| 68 | + 'join_conds' => array ( |
| 69 | + 'pg1' => array ( |
69 | 70 | 'LEFT JOIN', array ( |
70 | 71 | 'pg1.page_namespace = pl_namespace', |
71 | 72 | 'pg1.page_title = pl_title' ) ), |
72 | 73 | 'pg2' => array ( 'LEFT JOIN', |
73 | | - 'pg2.page_id = pl_from' ) ) |
| 74 | + 'pg2.page_id = pl_from' ) |
| 75 | + ) |
74 | 76 | ); |
75 | 77 | // Replacement WantedPages::getSQL |
76 | 78 | wfRunHooks( 'WantedPages::getQueryInfo', |