mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 04:24:41 +01:00
allow for like wildcard.val.wildcard in filtersearch for customfields (needed for advanced search, as criteria are now remapped to be filters for customfields)
This commit is contained in:
parent
33f102ac0a
commit
4b4735cb80
@ -553,6 +553,14 @@ class so_sql_cf extends so_sql
|
||||
))
|
||||
);
|
||||
}
|
||||
elseif ($this->customfields[$this->get_cf_name($name)]['type'] == 'text')
|
||||
{
|
||||
$sql_filter = str_replace($this->extra_value,'extra_filter.'.$this->extra_value,
|
||||
$this->db->expression($this->extra_table,array(
|
||||
$this->extra_value.' '.$this->db->capabilities[egw_db::CAPABILITY_CASE_INSENSITIV_LIKE].' '.$this->db->quote($wildcard.$val.$wildcard)
|
||||
))
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
$sql_filter = str_replace($this->extra_value,'extra_filter.'.
|
||||
|
Loading…
Reference in New Issue
Block a user