From 7a8515ae5490f087bd8cb25e57206e6950dc123b Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Sat, 28 Jul 2012 06:27:09 +0000 Subject: [PATCH] Typo fixed (fhem.pl won't start) git-svn-id: https://svn.fhem.de/fhem/trunk@1764 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/fhem.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fhem/fhem.pl b/fhem/fhem.pl index 275d87055..a44457d41 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -1626,11 +1626,12 @@ GlobalAttr($$) eval { use vars qw($DISTRIB_DESCRIPTION); # start of fix - # "Use of uninitialized value" after a fresh 5.2 installation and first time "updatefhem" - # release.pm does not reside in FhemUtils (what it should), so we load it from $modpath + # "Use of uninitialized value" after a fresh 5.2 installation and first + # time "updatefhem" release.pm does not reside in FhemUtils (what it + # should), so we load it from $modpath if(-e "$modpath/FhemUtils/release.pm") { require "FhemUtils/release.pm"; - } elsif(-e:"$modpath/release.pm") { + } elsif(-e "$modpath/release.pm") { require "release.pm"; } else { $DISTRIB_DESCRIPTION = "unknown";