mirror of
https://github.com/manuelkasper/AS-Stats.git
synced 2025-02-20 11:44:12 +08:00
rrd-extractstats.pl: fix bareword (disallowed by use strict, fixes #91)
This commit is contained in:
parent
4b90a1fa78
commit
569e8334c1
@ -54,7 +54,7 @@ try {
|
|||||||
my $sth = $db->prepare("SELECT asn, checked_at FROM stats") or die('field missing');
|
my $sth = $db->prepare("SELECT asn, checked_at FROM stats") or die('field missing');
|
||||||
$sth->execute();
|
$sth->execute();
|
||||||
while(my($item, $data) = $sth->fetchrow_array()) {
|
while(my($item, $data) = $sth->fetchrow_array()) {
|
||||||
as_list->{$item} = $data;
|
$as_list->{$item} = $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
$db_version = 2;
|
$db_version = 2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user