From 855ddbed7b005d44ed23b0529801af7e6ed3bd0c Mon Sep 17 00:00:00 2001 From: Platonides Date: Fri, 28 Jan 2011 22:17:01 +0000 Subject: [PATCH] Follow up r81100. Don't hardcode hiddencat quotes, per r80936 CR. --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 6e3ad660a0..ec6748b86c 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1002,7 +1002,7 @@ class OutputPage { $lb->constructSet( 'page', $dbr ), __METHOD__, array(), - array( 'page_props' => array( 'LEFT JOIN', "pp_propname='hiddencat' AND pp_page=page_id" ) ) + array( 'page_props' => array( 'LEFT JOIN', array( 'pp_propname' => 'hiddencat', 'pp_page = page_id' ) ) ); # Add the results to the link cache -- 2.20.1