From f2b50bdf8b1c177e884ac09c6a436ef664566b4b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 12 Nov 2008 17:53:58 +0000 Subject: [PATCH] "fix for bug #1805: SQL error when searching mail addresses from fmail Integer column etag was search with ILIKE '%@%' which is not allowed in Postgres, as theres no ILIKE operator for Integer" --- addressbook/inc/class.addressbook_so.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addressbook/inc/class.addressbook_so.inc.php b/addressbook/inc/class.addressbook_so.inc.php index 02440db505..0610db69d6 100755 --- a/addressbook/inc/class.addressbook_so.inc.php +++ b/addressbook/inc/class.addressbook_so.inc.php @@ -128,7 +128,7 @@ class addressbook_so * In SQL we can search all columns, though a view make on real sense */ var $sql_cols_not_to_search = array( - 'jpegphoto','owner','tid','private','id','cat_id', + 'jpegphoto','owner','tid','private','id','cat_id','etag', 'modified','modifier','creator','created','tz','account_id', ); /**