Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -1001,7 +1001,8 @@ |
1002 | 1002 | array( 'page_id', 'page_namespace', 'page_title', 'page_len', 'page_is_redirect', 'page_latest', 'pp_value' ), |
1003 | 1003 | $lb->constructSet( 'page', $dbr ), |
1004 | 1004 | __METHOD__, |
1005 | | - array( 'LEFT JOIN' => array( "pp_propname='hiddencat'", "pp_page=page_id" ) ) |
| 1005 | + array(), |
| 1006 | + array( 'page_props' => array( 'LEFT JOIN' => array( "pp_propname='hiddencat'", "pp_page=page_id" ) ) ) |
1006 | 1007 | ); |
1007 | 1008 | |
1008 | 1009 | # Add the results to the link cache |
Index: trunk/phase3/includes/Title.php |
— | — | @@ -3570,7 +3570,6 @@ |
3571 | 3571 | return $stack; |
3572 | 3572 | } |
3573 | 3573 | |
3574 | | - |
3575 | 3574 | /** |
3576 | 3575 | * Get an associative array for selecting this title from |
3577 | 3576 | * the "page" table |