From 109636020d6067c0d340ac54d55bcd0b112925f8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Fri, 9 Sep 2011 05:17:05 +0000 Subject: [PATCH] Followup r96543, + is not the correct thing to use here --- includes/LogEventsList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/LogEventsList.php b/includes/LogEventsList.php index 1188c507e4..a6da010af9 100644 --- a/includes/LogEventsList.php +++ b/includes/LogEventsList.php @@ -976,7 +976,7 @@ class LogPager extends ReverseChronologicalPager { $info = array( 'tables' => $tables, 'fields' => $fields, - 'conds' => $conds + $this->mConds, + 'conds' => array_merge( $conds, $this->mConds ), 'options' => $options, 'join_conds' => $joins, ); -- 2.20.1