aboutsummaryrefslogtreecommitdiff
path: root/search
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-06-05 17:43:35 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-06-05 17:43:35 +0000
commita4340107482a45d9a1b04dbfda9a6c0578c75e59 (patch)
treee244f172e3440d2a07b0752949c08210aec72770 /search
parentc15e8643b1eb0e8821bd3fb254a16d77b50f4bdd (diff)
downloadelgg-a4340107482a45d9a1b04dbfda9a6c0578c75e59.tar.gz
elgg-a4340107482a45d9a1b04dbfda9a6c0578c75e59.tar.bz2
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
Diffstat (limited to 'search')
-rw-r--r--search/index.php2
1 files changed, 1 insertions, 1 deletions
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);
}