diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-09 01:09:50 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-09 01:09:50 +0000 |
commit | 49e478da9d5540da798a7d497615f0d2903c8e4a (patch) | |
tree | 04a91f3028df014fb2a33b57f614acf88a07805b /mod/search | |
parent | 8c4fe01968aecea2ccfe6146ff580a272750e4d7 (diff) | |
download | elgg-49e478da9d5540da798a7d497615f0d2903c8e4a.tar.gz elgg-49e478da9d5540da798a7d497615f0d2903c8e4a.tar.bz2 |
Fixes #2631 removes 'elgg_' namespace from the page element views - anyone working with the trunk will need to update their theme and/or flush their cache
git-svn-id: http://code.elgg.org/elgg/trunk@7268 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/search')
-rw-r--r-- | mod/search/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/search/index.php b/mod/search/index.php index b042d596f..54054244a 100644 --- a/mod/search/index.php +++ b/mod/search/index.php @@ -137,7 +137,7 @@ foreach ($custom_types as $type) { // check that we have an actual query if (!$query) { $body = elgg_view_title(elgg_echo('search:search_error')); - $body .= elgg_view('page_elements/elgg_content', array('body' => elgg_echo('search:no_query'))); + $body .= elgg_view('page_elements/content', array('body' => elgg_echo('search:no_query'))); $layout = elgg_view_layout('one_column_with_sidebar', $body); echo elgg_view_page($title, $layout); |