From a4340107482a45d9a1b04dbfda9a6c0578c75e59 Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 5 Jun 2009 17:43:35 +0000 Subject: Closes #639: * Metastrings can be searched either case sensitive or insensitive modes. * Tags now have case lowered in a UTF8 safe way (requires mbstring support). * Introducing mb_wrapper.php containing multibyte wrapper functions. * Version bump. * Introduces #1043 for consideration. git-svn-id: https://code.elgg.org/elgg/trunk@3322 36083f99-b078-4883-b0ff-0f9b5a30f544 --- search/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'search/index.php') diff --git a/search/index.php b/search/index.php index 768224c2a..8cadcdcf6 100644 --- a/search/index.php +++ b/search/index.php @@ -76,7 +76,7 @@ $body .= elgg_view_title($title); // elgg_view_title(sprintf(elgg_echo('searchtitle'),$tag)); $body .= trigger_plugin_hook('search','',$tag,""); $body .= elgg_view('search/startblurb',array('tag' => $tag)); - $body .= list_entities_from_metadata($md_type, $tag, $objecttype, $subtype, $owner_guid_array, 10, false, false); + $body .= list_entities_from_metadata($md_type, elgg_strtolower($tag), $objecttype, $subtype, $owner_guid_array, 10, false, false); $body = elgg_view_layout('two_column_left_sidebar','',$body); } -- cgit v1.2.3