diff --git a/CHANGED b/CHANGED index 6cd89a3ed..b47022ace 100644 --- a/CHANGED +++ b/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: 93_DbLog: 3.12.1, crash if SVG called (forum:#91285) - change: 32_withings: API endpoint changed back to Withings servers - bugfix: 93_DbLog: 3.12.0, SVG-select corrected (forum.fhem.de/index.php/topic,65860.msg815640.html#msg815640) diff --git a/FHEM/93_DbLog.pm b/FHEM/93_DbLog.pm index a662aa2a3..5047b33c1 100644 --- a/FHEM/93_DbLog.pm +++ b/FHEM/93_DbLog.pm @@ -16,6 +16,7 @@ ############################################################################################################################################ # Versions History done by DS_Starter & DeeSPe: # +# 3.12.1 19.09.2018 use Time::Local (forum:#91285) # 3.12.0 04.09.2018 corrected SVG-select (https://forum.fhem.de/index.php/topic,65860.msg815640.html#msg815640) # 3.11.0 02.09.2018 reduceLog, reduceLogNbl - optional "days newer than" part added # 3.10.10 05.08.2018 commandref revised reducelogNbl @@ -205,10 +206,11 @@ eval "use DBI;1" or my $DbLogMMDBI = "DBI"; use Data::Dumper; use Blocking; use Time::HiRes qw(gettimeofday tv_interval); +use Time::Local; use Encode qw(encode_utf8); no if $] >= 5.017011, warnings => 'experimental::smartmatch'; -my $DbLogVersion = "3.12.0"; +my $DbLogVersion = "3.12.1"; my %columns = ("DEVICE" => 64, "TYPE" => 64,