From 17c17807cc0b63d322d56acfae4f30399041cdb5 Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 16 Oct 2009 02:33:55 +0000 Subject: Standardized files git-svn-id: http://code.elgg.org/elgg/trunk@3553 36083f99-b078-4883-b0ff-0f9b5a30f544 --- search/groups.php | 67 +++++++++++++++++++++++++------------------------------ 1 file changed, 31 insertions(+), 36 deletions(-) (limited to 'search/groups.php') diff --git a/search/groups.php b/search/groups.php index 4b0825d79..c31e421f0 100644 --- a/search/groups.php +++ b/search/groups.php @@ -1,40 +1,35 @@ $tag)); - $body .= list_group_search($tag); - //$body = elgg_view_layout('two_column_left_sidebar','',$body); - } else { - $title = elgg_echo('item:group'); - $body .= elgg_view_title($title); - $body .= list_entities('groups'); - } - - $body = elgg_view_layout('two_column_left_sidebar','',$body); - page_draw($title,$body); +// Set context +set_context('search'); -?> \ No newline at end of file +// Get input +$tag = stripslashes(get_input('tag')); + +if (!empty($tag)) { + $title = sprintf(elgg_echo('groups:searchtitle'),$tag); + $body = ""; + $body .= elgg_view_title($title); // elgg_view_title(sprintf(elgg_echo('searchtitle'),$tag)); + $body .= elgg_view('group/search/startblurb',array('tag' => $tag)); + $body .= list_group_search($tag); + //$body = elgg_view_layout('two_column_left_sidebar','',$body); +} else { + $title = elgg_echo('item:group'); + $body .= elgg_view_title($title); + $body .= list_entities('groups'); +} + +$body = elgg_view_layout('two_column_left_sidebar','',$body); +page_draw($title,$body); \ No newline at end of file -- cgit v1.2.3