From: John Du Hart Date: Sat, 26 Nov 2011 20:40:59 +0000 (+0000) Subject: Bug 32665 - Special:BlockList/username is using given username, but does not show... X-Git-Tag: 1.31.0-rc.0~26289 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=29fa9ffa1972b8c47128f5bdc9a0238279548017;p=lhc%2Fweb%2Fwiklou.git Bug 32665 - Special:BlockList/username is using given username, but does not show the username in the input field --- diff --git a/RELEASE-NOTES-1.19 b/RELEASE-NOTES-1.19 index 5085fdaab5..84da0da066 100644 --- a/RELEASE-NOTES-1.19 +++ b/RELEASE-NOTES-1.19 @@ -159,6 +159,8 @@ production. now disabled by default and is buggy. APC, XCache and WinCache are not affected. * Installer now refuses to install if php was not compiled with Ctype support. * (bug 29475) Remove "trackback" feature entirely from core +* (bug 32665) Special:BlockList prefills the username in the input field if + using the Special:BlockList\username URL === API changes in 1.19 === * (bug 19838) siprop=interwikimap can now use the interwiki cache. diff --git a/includes/specials/SpecialBlockList.php b/includes/specials/SpecialBlockList.php index f0617b7b35..f5a07642bf 100644 --- a/includes/specials/SpecialBlockList.php +++ b/includes/specials/SpecialBlockList.php @@ -68,6 +68,7 @@ class SpecialBlockList extends SpecialPage { 'label-message' => 'ipadressorusername', 'tabindex' => '1', 'size' => '45', + 'default' => $this->target, ), 'Options' => array( 'type' => 'multiselect',