msgSchema.pm: fix undefined variable (Forum msg405396)

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@10752 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
loredo
2016-02-07 13:39:21 +00:00
parent 3646341531
commit 1a7503e5d1

View File

@@ -286,11 +286,11 @@ my $db = {
'XBMC' => {
'Normal' =>
'{ my $dev=\'%DEVICE%\'; my $msg=\'%MSG%\'; $timeout=%TIMEOUT%*1000; fhem "set $dev msg $msg $timeout %XBMC_ICON%"; }',
'{ my $dev=\'%DEVICE%\'; my $msg=\'%MSG%\'; my $timeout=%TIMEOUT%*1000; fhem "set $dev msg $msg $timeout %XBMC_ICON%"; }',
'High' =>
'{ my $dev=\'%DEVICE%\'; my $msg=\'%MSG%\'; $timeout=%TIMEOUT%*1000; fhem "set $dev msg $msg $timeout %XBMC_ICON%"; }',
'{ my $dev=\'%DEVICE%\'; my $msg=\'%MSG%\'; my $timeout=%TIMEOUT%*1000; fhem "set $dev msg $msg $timeout %XBMC_ICON%"; }',
'Low' =>
'{ my $dev=\'%DEVICE%\'; my $msg=\'%MSG%\'; $timeout=%TIMEOUT%*1000; fhem "set $dev msg $msg $timeout %XBMC_ICON%"; }',
'{ my $dev=\'%DEVICE%\'; my $msg=\'%MSG%\'; my $timeout=%TIMEOUT%*1000; fhem "set $dev msg $msg $timeout %XBMC_ICON%"; }',
'defaultValues' => {
'Normal' => {
'TIMEOUT' => 8,