diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 12:07:28 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 12:07:28 +0000 |
commit | 755947e111d89d6babcd0f070d91c2245e22a809 (patch) | |
tree | 284e62a3f1cfca8f9d23e88680544cde4f5aea79 /mod/search | |
parent | 949a233076ec18f86e60f90a7a8837cb422664af (diff) | |
download | elgg-755947e111d89d6babcd0f070d91c2245e22a809.tar.gz elgg-755947e111d89d6babcd0f070d91c2245e22a809.tar.bz2 |
Refs #2428 just a few more CONFIG uses left to be replaced
git-svn-id: http://code.elgg.org/elgg/trunk@8000 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/search')
-rw-r--r-- | mod/search/start.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/search/start.php b/mod/search/start.php index 41e67dcdf..ac61963d4 100644 --- a/mod/search/start.php +++ b/mod/search/start.php @@ -61,7 +61,6 @@ function search_init() { * @param array $page Page elements from pain page handler */ function search_page_handler($page) { - global $CONFIG; // if there is no q set, we're being called from a legacy installation // it expects a search by tags. @@ -86,7 +85,7 @@ function search_page_handler($page) { * @return string */ function search_get_highlighted_relevant_substrings($haystack, $query, $min_match_context = 30, $max_length = 300) { - global $CONFIG; + $haystack = strip_tags($haystack); $haystack_length = elgg_strlen($haystack); $haystack_lc = elgg_strtolower($haystack); |