From 3e2637351da9559a4aa420004ac90e9fe30477ef Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Mon, 14 Feb 2011 15:46:48 -0500 Subject: [PATCH] Fulltext search over contact fields. Attention: DATABASE SCHEMA CHANGED\! --- program/steps/addressbook/search.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/steps/addressbook/search.inc b/program/steps/addressbook/search.inc index 0b4397f..7d67755 100644 --- a/program/steps/addressbook/search.inc +++ b/program/steps/addressbook/search.inc @@ -26,7 +26,7 @@ $search_request = md5('addr'.$search); // get contacts for this user -$result = $CONTACTS->search(array('name','email'), $search); +$result = $CONTACTS->search('*', $search); // save search settings in session $_SESSION['search'][$search_request] = $CONTACTS->get_search_set(); -- Gitblit v1.9.1