From: Stefan Schantl Date: Fri, 2 Apr 2021 08:04:21 +0000 (+0200) Subject: ids.cgi: Fix function call of get_used_provider_rulesfile_file(). X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ce40fddefc35cd879294c85a4c5eb85db5a4f773;p=people%2Fpmueller%2Fipfire-2.x.git ids.cgi: Fix function call of get_used_provider_rulesfile_file(). The function is locatated in the IDS module and therefore needs to be called from there. Signed-off-by: Stefan Schantl --- diff --git a/html/cgi-bin/ids.cgi b/html/cgi-bin/ids.cgi index aad0630e63..8a2afd9061 100644 --- a/html/cgi-bin/ids.cgi +++ b/html/cgi-bin/ids.cgi @@ -885,7 +885,7 @@ if ($cgiparams{'RULESET'} eq $Lang::tr{'ids apply'}) { &IDS::drop_dl_rulesfile($provider); # Get the name of the provider rulessets include file. - my $provider_used_rulefile = &get_used_provider_rulesfile_file($provider); + my $provider_used_rulefile = &IDS::get_used_provider_rulesfile_file($provider); # Drop the file, it is not longer needed. unlink("$provider_used_rulefile");