From: Stanislav Malyshev Date: Wed, 2 Aug 2017 03:34:33 +0000 (-0700) Subject: Fix Special:Undelete search - use variable and not request param X-Git-Tag: 1.31.0-rc.0~2499^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=commitdiff_plain;h=d8593569d70991c8f1030b8808fd83f758eb39e6;p=lhc%2Fweb%2Fwiklou.git Fix Special:Undelete search - use variable and not request param Using request param fixes default to false. Change-Id: I61f3f5d18783e2256612d91ca35437a6e65e0c15 --- diff --git a/includes/specials/SpecialUndelete.php b/includes/specials/SpecialUndelete.php index 28914f4f71..740207d6b9 100644 --- a/includes/specials/SpecialUndelete.php +++ b/includes/specials/SpecialUndelete.php @@ -277,7 +277,7 @@ class SpecialUndelete extends SpecialPage { $fieldset, new OOUI\HtmlSnippet( Html::hidden( 'title', $this->getPageTitle()->getPrefixedDBkey() ) . - Html::hidden( 'fuzzy', $this->getRequest()->getVal( 'fuzzy' ) ) + Html::hidden( 'fuzzy', $fuzzySearch ) ) );