2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-15 03:59:11 +00:00

fhem.pl: add cfgDB_svnId

git-svn-id: https://svn.fhem.de/fhem/trunk@5108 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-03-03 13:20:18 +00:00
parent 0f47ba10ad
commit 0ae2cbfe2d

View File

@ -129,6 +129,7 @@ sub cfgDB_ReadAll($);
sub cfgDB_SaveState;
sub cfgDB_SaveCfg;
sub cfgDB_GlobalAttr;
sub cfgDB_svnId;
##################################################
# Variables:
@ -2327,6 +2328,7 @@ CommandVersion($$)
my ($cl, $param) = @_;
my @ret = ("# $cvsid");
push @ret, cfgDB_svnId if $attr{global}{configfile} eq 'configDB';
foreach my $m (sort keys %modules) {
next if(!$modules{$m}{LOADED} || $modules{$m}{ORDER} < 0);
my $fn = "$attr{global}{modpath}/FHEM/".$modules{$m}{ORDER}."_$m.pm";