From: Prateek Saxena Date: Wed, 18 Jul 2018 05:08:03 +0000 (+0530) Subject: LogEventsList: Use GET in HTMLForm X-Git-Tag: 1.34.0-rc.0~4677^2~3 X-Git-Url: http://git.cyclocoop.org/%22.htmlspecialchars%28%24url_syndic%29.%22?a=commitdiff_plain;h=682e4464a1a2dd5e8c7445bfb3a6e2cbe4572112;p=lhc%2Fweb%2Fwiklou.git LogEventsList: Use GET in HTMLForm I missed this during conversion. Follows-up on Iba3c6aa5ac40dcdee0792c2d045b238b02d76521. Bug: T199856 Change-Id: If3f228425b217c9ccdb7d32e0bc899647797ed70 --- diff --git a/includes/logging/LogEventsList.php b/includes/logging/LogEventsList.php index a7620fedd6..aecbce9870 100644 --- a/includes/logging/LogEventsList.php +++ b/includes/logging/LogEventsList.php @@ -173,6 +173,7 @@ class LogEventsList extends ContextSource { $htmlForm = new HTMLForm( $formDescriptor, $this->getContext() ); $htmlForm ->setSubmitText( $this->msg( 'logeventslist-submit' )->text() ) + ->setMethod( 'get' ) ->setWrapperLegendMsg( 'log' ); // TODO This will should be removed at some point. See T199495.