2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2024-11-22 09:49:50 +00:00

configDB - minor bugfix

git-svn-id: https://svn.fhem.de/fhem/trunk@6034 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2014-06-02 17:19:54 +00:00
parent 73f5f5c871
commit 4ae7678b4f

View File

@ -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;