strict/warn

This commit is contained in:
Joe Cooper
2016-06-17 23:08:57 -07:00
parent ecca77fdad
commit 7ec8bc71e0

View File

@ -1,5 +1,8 @@
# log_parser.pl
# Functions for parsing this module's logs
use strict;
use warnings;
our %text;
do 'at-lib.pl';
@ -7,7 +10,7 @@ do 'at-lib.pl';
# Converts logged information from this module into human-readable form
sub parse_webmin_log
{
local ($user, $script, $action, $type, $object, $p, $long) = @_;
my ($user, $script, $action, $type, $object, $p, $long) = @_;
if ($type eq "job") {
return &text('log_'.$action.'_job',
"<tt>".&html_escape($object)."</tt>");