From 682e4464a1a2dd5e8c7445bfb3a6e2cbe4572112 Mon Sep 17 00:00:00 2001 From: Prateek Saxena Date: Wed, 18 Jul 2018 10:38:03 +0530 Subject: [PATCH] LogEventsList: Use GET in HTMLForm I missed this during conversion. Follows-up on Iba3c6aa5ac40dcdee0792c2d045b238b02d76521. Bug: T199856 Change-Id: If3f228425b217c9ccdb7d32e0bc899647797ed70 --- includes/logging/LogEventsList.php | 1 + 1 file changed, 1 insertion(+) 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. -- 2.20.1