From 6d29bdd67fd5c0f91f3187702c16b965076e5450 Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Tue, 15 Apr 2014 16:32:25 +0000 Subject: [PATCH] fhem.pl: reload bug, ldata won't be restored (by Stefan) git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@5532 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/fhem.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/fhem.pl b/fhem/fhem.pl index 12c17122e..a1cc3b544 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -1964,7 +1964,7 @@ CommandReload($$) $modules{$m}{ORDER} = $order; $modules{$m}{LOADED} = 1; $modules{$m}{defptr} = $defptr if($defptr); - $modules{$m}{ldata} = $defptr if($ldata); + $modules{$m}{ldata} = $ldata if($ldata); return undef; }