From: Aaron Schulz Date: Fri, 2 Jan 2009 21:55:10 +0000 (+0000) Subject: (bug 16045) Pagination links break on Special:Log/Username X-Git-Tag: 1.31.0-rc.0~43600 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=25022f0d667dbc7642db54d4935dc9f71388c86c;p=lhc%2Fweb%2Fwiklou.git (bug 16045) Pagination links break on Special:Log/Username --- 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;