From 29d1f48ae778c4f9fea4e888b7fa8608c0ed5fb9 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Sun, 21 Nov 2021 15:37:25 -0800 Subject: [PATCH] Fix sort order for protocols --- apache/core.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache/core.pl b/apache/core.pl index 101589c00..5e0bd08d4 100755 --- a/apache/core.pl +++ b/apache/core.pl @@ -619,7 +619,7 @@ else { return ( [ ] ); } sub edit_Protocols { my %p = map { $_, 1 } @{$_[0]->{'words'}}; -my @popts = ( "http/1.1", "h2", "h2c" ); +my @popts = ( "h2", "h2c", "http/1.1" ); my @psel = map { &ui_checkbox("protocols", $_, $text{'core_protocols_'.$_} || $_, $p{$_}) } @popts; return (1, $text{'core_protocols'},