From e91e4c55628fb487d42140a788044539416992a6 Mon Sep 17 00:00:00 2001 From: John Du Hart Date: Sun, 27 Nov 2011 18:28:13 +0000 Subject: [PATCH] Followup r104353, fixing a regression in the BlockList --- includes/specials/SpecialBlockList.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/specials/SpecialBlockList.php b/includes/specials/SpecialBlockList.php index a6dee5743d..8334c99748 100644 --- a/includes/specials/SpecialBlockList.php +++ b/includes/specials/SpecialBlockList.php @@ -49,6 +49,7 @@ class SpecialBlockList extends SpecialPage { $request = $this->getRequest(); $par = $request->getVal( 'ip', $par ); $this->target = trim( $request->getVal( 'wpTarget', $par ) ); + $request->setVal( 'wpTarget', $this->target ); $this->options = $request->getArray( 'wpOptions', array() ); -- 2.20.1