From 1db7dba6a8a12b9066fb01f56054c0c637242076 Mon Sep 17 00:00:00 2001 From: cash Date: Mon, 7 Feb 2011 02:43:24 +0000 Subject: Fixes 2354 Using list instead of listing for search now git-svn-id: http://code.elgg.org/elgg/trunk@8058 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/search/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/search/index.php') diff --git a/mod/search/index.php b/mod/search/index.php index db2aa5cc2..c51b0fe0d 100644 --- a/mod/search/index.php +++ b/mod/search/index.php @@ -187,7 +187,7 @@ if ($search_type == 'all' || $search_type == 'entities') { } if (is_array($results['entities']) && $results['count']) { - if ($view = search_get_search_view($current_params, 'listing')) { + if ($view = search_get_search_view($current_params, 'list')) { $results_html .= elgg_view($view, array( 'results' => $results, 'params' => $current_params, @@ -208,7 +208,7 @@ if ($search_type == 'all' || $search_type == 'entities') { } if (is_array($results['entities']) && $results['count']) { - if ($view = search_get_search_view($current_params, 'listing')) { + if ($view = search_get_search_view($current_params, 'list')) { $results_html .= elgg_view($view, array( 'results' => $results, 'params' => $current_params, @@ -239,7 +239,7 @@ if ($search_type != 'entities' || $search_type == 'all') { } if (is_array($results['entities']) && $results['count']) { - if ($view = search_get_search_view($current_params, 'listing')) { + if ($view = search_get_search_view($current_params, 'list')) { $results_html .= elgg_view($view, array( 'results' => $results, 'params' => $current_params, -- cgit v1.2.3