mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-16 23:06:05 +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:
parent
2ff44f87f5
commit
e062932ce9
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# 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.
|
# 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
|
- bugfix: Dashboard: corrected version number
|
||||||
- feature: SYSSTAT: added mibs attribute for snmp monitoring
|
- feature: SYSSTAT: added mibs attribute for snmp monitoring
|
||||||
- bugfix: Dashboard: fixed CSS height issue for rows (top, center, bottom)
|
- bugfix: Dashboard: fixed CSS height issue for rows (top, center, bottom)
|
||||||
|
@ -190,7 +190,7 @@ IT_Set($@)
|
|||||||
}
|
}
|
||||||
|
|
||||||
return SetExtensions($hash, $list, $name, @a) if( $a[0] eq "?" );
|
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;
|
$lh->{READINGS}{state}{VAL} = $v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
$lh->{READINGS}{state}{VAL} = $v;
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$lh->{READINGS}{state}{VAL} = $v;
|
$lh->{READINGS}{state}{VAL} = $v;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user