aboutsummaryrefslogtreecommitdiff
path: root/mod/search/index.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-07 02:43:24 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-07 02:43:24 +0000
commit1db7dba6a8a12b9066fb01f56054c0c637242076 (patch)
tree09fb881083935d254d72a2c834d1a6f1a9429b6a /mod/search/index.php
parentccca9564b23d6f860d46ccdb86a7578e74b7a534 (diff)
downloadelgg-1db7dba6a8a12b9066fb01f56054c0c637242076.tar.gz
elgg-1db7dba6a8a12b9066fb01f56054c0c637242076.tar.bz2
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
Diffstat (limited to 'mod/search/index.php')
-rw-r--r--mod/search/index.php6
1 files changed, 3 insertions, 3 deletions
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,