From 107d1c93f348cd6b76390620ae35b61d9d0dc022 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 8 Apr 2008 20:20:29 +0000 Subject: [PATCH] Hack to preserve special page parameter (e.g. "/delete") --- includes/LogEventsList.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/LogEventsList.php b/includes/LogEventsList.php index 7a24ba1c92..e8b7b2e84d 100644 --- a/includes/LogEventsList.php +++ b/includes/LogEventsList.php @@ -386,6 +386,8 @@ class LogPager extends ReverseChronologicalPager { $this->limitType( $type ); $this->limitUser( $user ); $this->limitTitle( $title, $pattern ); + # Hack to recognize subpage parameter + $_GET['type'] = $type; } /** -- 2.20.1