diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-03-19 11:01:58 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-03-19 11:01:58 -0400 |
commit | d1b2a9d7087ecc171f941755b4c3a420cd202842 (patch) | |
tree | 4e10480273945d9d983c0ab6ec546dfe4764a57e /actions/noticesearch.php | |
parent | 5dc913f58951815fcaa246e675ff7d30ad93f633 (diff) |
Somewhat better behaviour with mixed caps in search
Deal somewhat better with mixed caps in people and notice search.
Diffstat (limited to 'actions/noticesearch.php')
-rw-r--r-- | actions/noticesearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php index 83e59dd9a..eb4a072de 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -103,7 +103,7 @@ class NoticesearchAction extends SearchAction function showResults($q, $page) { $notice = new Notice(); - $q = strtolower($q); + $search_engine = $notice->getSearchEngine('identica_notices'); $search_engine->set_sort_mode('chron'); // Ask for an extra to see if there's more. |