From 4bebceab58d1cf6caed4f8b7f2ff1b0400a25406 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 14 Aug 2020 16:24:08 +0100 Subject: [PATCH] history reporting (nfc): url-quoting: quote = too We are going to want to url-encode keys. If key contains =, we still need to be able to tell where it ends, so it must be encoded. Signed-off-by: Ian Jackson --- Osstest/HistoryReport.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Osstest/HistoryReport.pm b/Osstest/HistoryReport.pm index 75ec75f..20913d2 100644 --- a/Osstest/HistoryReport.pm +++ b/Osstest/HistoryReport.pm @@ -45,7 +45,7 @@ BEGIN { use POSIX; -our $url_ok_chars = '-+=/~:;_.,\w'; +our $url_ok_chars = '-+/~:;_.,\w'; our @key_cols; -- 2.39.5