From 21073c82d23115078790a292de61eb9c8bc68bde Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Sun, 20 Oct 2013 11:19:58 +0000 Subject: [PATCH] fhem.pl: cmdalias support git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@4077 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 1593393c1..71acb098c 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -824,7 +824,7 @@ AnalyzeCommand($$) $param = "" if(!defined($param)); no strict "refs"; - my $ret = &{$cmds{$fn}{Fn} }($cl, $param); + my $ret = &{$cmds{$fn}{Fn} }($cl, $param, $fn); use strict "refs"; return undef if(defined($ret) && $ret eq ""); return $ret;