2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-15 22:26:04 +00:00

10_IT: Correct command parsing (forum id 38467)

git-svn-id: https://svn.fhem.de/fhem/trunk@8919 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
dancer0705 2015-07-08 15:52:12 +00:00
parent 2ff44f87f5
commit e062932ce9
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- bugfix: 10_IT: Correct command parsing (forum id 38467)
- bugfix: Dashboard: corrected version number
- feature: SYSSTAT: added mibs attribute for snmp monitoring
- bugfix: Dashboard: fixed CSS height issue for rows (top, center, bottom)

View File

@ -190,7 +190,7 @@ IT_Set($@)
}
return SetExtensions($hash, $list, $name, @a) if( $a[0] eq "?" );
return SetExtensions($hash, $list, $name, @a) if( !grep( $_ =~ /^$a[0]($|:)/, split( ' ', $list ) ) );
return SetExtensions($hash, $list, $name, @a) if( !grep( $_ =~ /^\Q$a[0]\E($|:)/, split( ' ', $list ) ) );
@ -367,8 +367,6 @@ IT_Set($@)
$lh->{READINGS}{state}{VAL} = $v;
}
}
} else {
$lh->{READINGS}{state}{VAL} = $v;
}
} else {
$lh->{READINGS}{state}{VAL} = $v;