diff options
| author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-20 00:07:22 +0000 |
|---|---|---|
| committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-20 00:07:22 +0000 |
| commit | 79455e6a6f76844742b4cafdca151e7b0bba00fd (patch) | |
| tree | 2a8c336db63a742d7e619d1dc3863764331bf658 /mod/search/start.php | |
| parent | 43d1cc1bbe4b9c41ac8f6305aa9fe7fb48626565 (diff) | |
| download | elgg-79455e6a6f76844742b4cafdca151e7b0bba00fd.tar.gz elgg-79455e6a6f76844742b4cafdca151e7b0bba00fd.tar.bz2 | |
Fixes #1523: Updated search to use ELGG_ENTITIES_NO_VALUE/ANY_VALUE and removed some commented out code.
git-svn-id: http://code.elgg.org/elgg/trunk@3956 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/search/start.php')
| -rw-r--r-- | mod/search/start.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/search/start.php b/mod/search/start.php index 5767e65ff..a6a0bead2 100644 --- a/mod/search/start.php +++ b/mod/search/start.php @@ -249,10 +249,10 @@ function search_consolidate_substrings($offsets, $lengths) { function search_highlight_words($words, $string) { $i = 1; $replace_html = array( - 'strong' => rand(10000,99999), - 'class' => rand(10000,99999), - 'searchMatch' => rand(10000,99999), - 'searchMatchColor' => rand(10000,99999) + 'strong' => rand(10000, 99999), + 'class' => rand(10000, 99999), + 'searchMatch' => rand(10000, 99999), + 'searchMatchColor' => rand(10000, 99999) ); foreach ($words as $word) { |
