From c5bccf920092b5927e18172f64c9acacbccd3528 Mon Sep 17 00:00:00 2001 From: betateilchen <> Date: Tue, 5 Jul 2016 18:19:11 +0000 Subject: [PATCH] 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 --- fhem/configDB.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/configDB.pm b/fhem/configDB.pm index 869d46fa1..23e7f7ee4 100644 --- a/fhem/configDB.pm +++ b/fhem/configDB.pm @@ -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) {