aboutsummaryrefslogtreecommitdiff
path: root/search
diff options
context:
space:
mode:
Diffstat (limited to 'search')
-rw-r--r--search/index.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/search/index.php b/search/index.php
index 0553879b2..4d4d269ca 100644
--- a/search/index.php
+++ b/search/index.php
@@ -33,7 +33,10 @@
}
if (!empty($tag)) {
- $body = elgg_view_title(sprintf(elgg_echo('searchtitle'),$tag));
+ $body = "";
+ $body .= 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, 10, false);
$body = elgg_view_layout('one_column',$body);
}