]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
removed unnecessary context setting
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sun, 3 Apr 2011 13:01:43 +0000 (13:01 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sun, 3 Apr 2011 13:01:43 +0000 (13:01 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@8931 36083f99-b078-4883-b0ff-0f9b5a30f544

mod/file/pages/file/world.php

index 2cd9423697a22d43fbc49c28a0f889c681a2938a..bfe965084e36bc3c9b67ea407a40a0fb066769b1 100644 (file)
@@ -11,14 +11,12 @@ $limit = get_input("limit", 10);
 
 $title = elgg_echo('file:all');
 
-elgg_push_context('search');
 $content = elgg_list_entities(array(
        'types' => 'object',
        'subtypes' => 'file',
        'limit' => $limit,
        'full_view' => FALSE
 ));
-elgg_pop_context();
 
 $sidebar = file_get_type_cloud();
 $sidebar = elgg_view('file/sidebar');