#441 change localtime to gmtime

This commit is contained in:
Oliver Gorwits
2018-10-19 14:49:03 +01:00
parent 00ac3cff4a
commit 779e0a618d
4 changed files with 8 additions and 8 deletions

View File

@@ -62,7 +62,7 @@ Creates netmap of network.
sub graph {
my %CONFIG = %{ setting('graph') };
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime();
my $month = sprintf("%d%02d",$year+1900,$mon+1);
info "graph() - Creating Graphs";