]> git.ipfire.org Git - people/stevee/ipfire-2.x.git/commitdiff
ids.cgi: Stop showing ruleset date on customize rulest sub-page.
authorStefan Schantl <stefan.schantl@ipfire.org>
Mon, 22 Mar 2021 13:42:42 +0000 (14:42 +0100)
committerStefan Schantl <stefan.schantl@ipfire.org>
Wed, 8 Sep 2021 17:37:23 +0000 (19:37 +0200)
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
html/cgi-bin/ids.cgi

index 79878e22647fb1bb84d83fd9e212dce26a0c4f7b..5bc2e3689cefac3782f5466dcc760129af27704c 100644 (file)
@@ -1116,20 +1116,7 @@ print <<END
        </script>
 END
 ;
-       # Load neccessary perl modules for file stat and to format the timestamp.
-       use File::stat;
-       use POSIX qw( strftime );
-
-       # Call stat on the rulestarball.
-       my $stat = stat("$IDS::rulestarball");
-
-       # Get timestamp the file creation.
-       my $mtime = $stat->mtime;
-
-       # Convert into human read-able format.
-       my $rulesdate = strftime('%Y-%m-%d %H:%M:%S', localtime($mtime));
-
-       &Header::openbox('100%', 'LEFT', "$Lang::tr{'intrusion detection system rules'} ($rulesdate)" );
+       &Header::openbox('100%', 'LEFT', "$Lang::tr{'intrusion detection system rules'}" );
 
                print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";