2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

configDB.pm: fix problem on parsing configfile for mysql or postgresql

git-svn-id: https://svn.fhem.de/fhem/trunk@11747 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2016-07-05 18:19:11 +00:00
parent a0c9959dd8
commit c5bccf9200

View File

@ -201,7 +201,7 @@ my %dbconfig;
## support multiple hosts from one fhem installation
##
my $configs = join("",@config);
my @configs = split(/;/,$configs);
my @configs = split(/;\n/,$configs);
my $count = @configs;
if ($count > 1) {