mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-27 05:11:41 +02:00
fix for bug #2624: SQL error - CONCAT not supported by postgres
This commit is contained in:
parent
d3c4f85a6b
commit
4b9b76bbe7
@ -768,7 +768,7 @@ class infolog_so
|
|||||||
// Multi-select - any entry with the filter value selected matches
|
// Multi-select - any entry with the filter value selected matches
|
||||||
$filtermethod .= $this->db->expression($this->extra_table, array(
|
$filtermethod .= $this->db->expression($this->extra_table, array(
|
||||||
'info_extra_name' => substr($col,1),
|
'info_extra_name' => substr($col,1),
|
||||||
"CONCAT(',',info_extra_value,',') LIKE '%,$data,%'"
|
$this->db->concat("','",'info_extra_value',"','").' '.$this->db->capabilities[egw_db::CAPABILITY_CASE_INSENSITIV_LIKE].' '.$this->db->quote('%,'.$data.',%'),
|
||||||
)).')';
|
)).')';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user