diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-17 16:23:08 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-17 16:23:08 +0000 |
commit | 8bc2712d27502006189123a454fc59d9af5b505b (patch) | |
tree | cea242a3375b40562a13f2fca73012749df98770 /search | |
parent | 7184453089f95216643ab697930b020890c65006 (diff) | |
download | elgg-8bc2712d27502006189123a454fc59d9af5b505b.tar.gz elgg-8bc2712d27502006189123a454fc59d9af5b505b.tar.bz2 |
Fixed double layout issue
git-svn-id: https://code.elgg.org/elgg/trunk@2280 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'search')
-rw-r--r-- | search/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/search/users.php b/search/users.php index 3117cce89..6f91a0c66 100644 --- a/search/users.php +++ b/search/users.php @@ -27,7 +27,7 @@ $body .= elgg_view_title($title); // elgg_view_title(sprintf(elgg_echo('searchtitle'),$tag));
$body .= elgg_view('user/search/startblurb',array('tag' => $tag));
$body .= list_user_search($tag);
- $body = elgg_view_layout('two_column_left_sidebar','',$body);
+ //$body = elgg_view_layout('two_column_left_sidebar','',$body);
} else {
$title = elgg_echo('item:user');
$body .= elgg_view_title($title);
|