mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
backporting r30991-4: using egw_db->capabilities[egw_db::CASE_INSENSITIVE_LIKE] and other PostgreSQL 8.3 fixes
This commit is contained in:
parent
86be57e1b4
commit
7de80b4322
@ -280,7 +280,7 @@ class calendar_so
|
||||
{
|
||||
foreach(array('cal_title','cal_description','cal_location') as $col)
|
||||
{
|
||||
$to_or[] = $col . ' LIKE ' . $this->db->quote('%'.$query.'%');
|
||||
$to_or[] = $col.' '.$this->db->capabilities[egw_db::CAPABILITY_CASE_INSENSITIV_LIKE].' '.$this->db->quote('%'.$query.'%');
|
||||
}
|
||||
$where[] = '('.implode(' OR ',$to_or).')';
|
||||
}
|
||||
|
@ -504,7 +504,7 @@ class egw_db
|
||||
$this->capabilities[self::CAPABILITY_NAME_CASE] = 'lower';
|
||||
$this->capabilities[self::CAPABILITY_CLIENT_ENCODING] = (float) $db_version >= 7.4;
|
||||
$this->capabilities[self::CAPABILITY_OUTER_JOIN] = true;
|
||||
$this->capabilities[self::CAPABILITY_CASE_INSENSITIV_LIKE] = 'ILIKE';
|
||||
$this->capabilities[self::CAPABILITY_CASE_INSENSITIV_LIKE] = '::text ILIKE';
|
||||
$this->capabilities[self::CAPABILITY_REQUIRE_TRUNCATE_VARCHAR] = true;
|
||||
break;
|
||||
|
||||
|
@ -931,8 +931,7 @@ class translation
|
||||
*/
|
||||
static function get_message_id($translation,$app=null,$lang=null)
|
||||
{
|
||||
$like = self::$db->Type == 'pgsql' ? 'ILIKE' : 'LIKE';
|
||||
$where = array('content '.$like.' '.self::$db->quote($translation)); // like to be case-insensitive
|
||||
$where = array('content '.self::$db->capabilities[egw_db::CAPABILITY_CASE_INSENSITIV_LIKE].' '.self::$db->quote($translation));
|
||||
if ($app) $where['app_name'] = $app;
|
||||
if ($lang) $where['lang'] = $lang;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user