Trim off leading whitespaces from filter values when searching

Because whitespaces may be used when searching for entities using the query string format "column = value" we have to trim off leading whitespaces from filter values.
This loses the possibility for search for entities with leading whitespaces of course.

refs #8777
This commit is contained in:
Eric Lippmann 2015-04-08 10:14:42 +02:00
parent 6e6aabedf2
commit a185107927
1 changed files with 2 additions and 2 deletions

View File

@ -201,13 +201,13 @@ class FilterEditor extends AbstractWidget
if ($searchCol === null) {
throw new Exception('Cannot search here');
}
$search = ltrim($search);
$filter = $this->mergeRootExpression($filter, $searchCol, '=', "*$search*");
} else {
list($k, $v) = preg_split('/=/', $search);
$filter = $this->mergeRootExpression($filter, $k, '=', $v);
$filter = $this->mergeRootExpression($filter, trim($k), '=', ltrim($v));
}
$url = $this->url()->setQueryString(
$filter->toQueryString()
)->addParams($preserve);