ThresholdRange::fromString(): compare non-strictly

refs #8194
This commit is contained in:
Alexander A. Klimov 2016-04-29 11:14:00 +02:00 committed by Johannes Meyer
parent 81601e6303
commit bc5d3b64c4
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class ThresholdRange
$range = new static();
$range->raw = $rawRange;
if ($rawRange === '') {
if ($rawRange == '') {
return $range;
}