Added trim in search

This commit is contained in:
Daniel Maya 2020-11-10 13:54:15 +01:00
parent 2046689b00
commit ac762469b6
1 changed files with 3 additions and 0 deletions

View File

@ -643,6 +643,9 @@ $url = ui_get_url_refresh(
$search_id_group = (int) get_parameter('search_id_group');
$search_string = (string) get_parameter('search_string');
if (!empty($search_string)) {
$search_string = trim($search_string, ' ');
}
$table = new stdClass();
$table->width = '100%';