2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-10 14:12:38 +00:00
git-svn-id: https://svn.fhem.de/fhem/trunk@9767 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2015-11-03 23:22:37 +00:00
parent 300f868fec
commit 67867c4598

View File

@ -109,7 +109,7 @@ readingsProxy_update($$)
$value = ReadingsVal($DEVICE,$READING,undef) if( !defined($value) );
my $value_fn = AttrVal( $name, "valueFn", "" );
if( $value_fn =~ m/^{.*}$/ ) {
if( $value_fn =~ m/^{.*}$/s ) {
my $VALUE = $value;
my $LASTCMD = ReadingsVal($name,"lastCmd",undef);
@ -219,7 +219,7 @@ readingsProxy_Set($@)
my $v = join(" ", @a);
my $set_fn = AttrVal( $hash->{NAME}, "setFn", "" );
if( $set_fn =~ m/^{.*}$/ ) {
if( $set_fn =~ m/^{.*}$/s ) {
my $CMD = $a[0];
my $DEVICE = $hash->{DEVICE};
my $READING = $hash->{READING};
@ -269,7 +269,7 @@ readingsProxy_Get($@)
my $v = join(" ", @a);
my $get_fn = AttrVal( $hash->{NAME}, "getFn", "" );
if( $get_fn =~ m/^{.*}$/ ) {
if( $get_fn =~ m/^{.*}$/s ) {
my $DEVICE = $hash->{DEVICE};
my $READING = $hash->{READING};
my $CMD = $a[0];