From: x2001corpet Date: Tue, 8 May 2007 13:20:09 +0000 (+0000) Subject: backport fix firstname autocomplete search X-Git-Tag: xorg/0.9.15~300 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=07c4f9cc45def470f31b966ede4e5c38bb045f65;p=platal.git backport fix firstname autocomplete search git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@1807 839d8a87-29fc-0310-9880-83ba4fa771e5 --- diff --git a/modules/search.php b/modules/search.php index 5b1c5a8..74228be 100644 --- a/modules/search.php +++ b/modules/search.php @@ -219,7 +219,7 @@ class SearchModule extends PLModule $field = '`entreprise`'; $unique='`uid`'; break; - case '`firstname`': + case 'firstname': $field = '`prenom`'; $q = '(^|[ \\-])'.$q; $beginwith = false;