diff --git a/fhem/configDB.pm b/fhem/configDB.pm index 737510073..85f80ede5 100644 --- a/fhem/configDB.pm +++ b/fhem/configDB.pm @@ -481,6 +481,7 @@ sub cfgDB_Read99() { # return SVN Id from file stored in database sub cfgDB_Fileversion($$) { my ($file,$ret) = @_; + $ret = "No Id found for $file"; my ($err,@in) = cfgDB_FileRead($file); foreach(@in){ $ret = $_ if($_ =~ m/# \$Id:/); } return $ret;