tableNamesN( 'page', 'pagelinks' ); return "SELECT 'Deadendpages' as type, page_namespace AS namespace, page_title as title, page_title AS value " . "FROM $page LEFT JOIN $pagelinks ON page_id = pl_from " . "WHERE pl_from IS NULL " . "AND page_namespace = 0 " . "AND page_is_redirect = 0"; } } /** * Constructor */ function wfSpecialDeadendpages() { list( $limit, $offset ) = wfCheckLimits(); $depp = new DeadendPagesPage(); return $depp->doQuery( $offset, $limit ); }