2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

configDB: minor bugfix

git-svn-id: https://svn.fhem.de/fhem/trunk@7696 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2015-01-24 18:16:54 +00:00
parent 291eaf8746
commit 72f470a864

View File

@ -420,6 +420,7 @@ sub cfgDB_SaveCfg(;$) {
foreach my $a (sort keys %{$configDB{attr}}) {
# foreach my $a (sort keys %{$attr{configdb}}) {
my $val = $configDB{attr}{$a};
next unless $val;
$val =~ s/;/;;/g;
push @rowList, "attr configdb $a $val";
}