added missing / in FW_IconPath() [no functional change]

git-svn-id: https://svn.fhem.de/fhem/trunk@1917 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
borisneubert
2012-10-03 18:18:08 +00:00
parent 5d928a9e34
commit 1f791b708d

View File

@@ -2187,7 +2187,7 @@ FW_IconPath($) {
$name= FW_canonicalizeIcon($name); $name= FW_canonicalizeIcon($name);
FW_GetIcons(); # get the icon set for the current instance FW_GetIcons(); # get the icon set for the current instance
my $path= $FW_icons{$name}; my $path= $FW_icons{$name};
return $path ? $FW_icondir. $path : undef; return $path ? $FW_icondir . "/" . $path : undef;
} }
# returns the URL for the logical path # returns the URL for the logical path