From: Jon Murphy Date: Mon, 16 Jan 2023 20:34:04 +0000 (-0600) Subject: services.cgi: avoid experimental warnings X-Git-Tag: v2.27-core174~159 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4941ce0031e9a9f699d0d9ff100f26a6bbce1654;p=ipfire-2.x.git services.cgi: avoid experimental warnings - add single line to code: no warnings 'experimental'; - corrects this issue: https://lists.ipfire.org/pipermail/development/2022-December/015113.html Signed-off-by: Jon Murphy Signed-off-by: Michael Tremer --- diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi index 3c0f27f99f..0d06ab5fec 100644 --- a/html/cgi-bin/services.cgi +++ b/html/cgi-bin/services.cgi @@ -21,6 +21,7 @@ use strict; use feature "switch"; +no warnings 'experimental'; # enable only the following on debugging purpose #use warnings; #use CGI::Carp 'fatalsToBrowser';