From 25022f0d667dbc7642db54d4935dc9f71388c86c Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 2 Jan 2009 21:55:10 +0000 Subject: [PATCH] (bug 16045) Pagination links break on Special:Log/Username --- includes/LogEventsList.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/LogEventsList.php b/includes/LogEventsList.php index b69f34e8b4..528bd3aa56 100644 --- a/includes/LogEventsList.php +++ b/includes/LogEventsList.php @@ -525,6 +525,7 @@ class LogPager extends ReverseChronologicalPager { public function getDefaultQuery() { $query = parent::getDefaultQuery(); $query['type'] = $this->type; + $query['user'] = $this->user; $query['month'] = $this->mMonth; $query['year'] = $this->mYear; return $query; -- 2.20.1