diff options
Diffstat (limited to 'mod/file/index.php')
-rw-r--r-- | mod/file/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/file/index.php b/mod/file/index.php index ae2353724..e0ec1451f 100644 --- a/mod/file/index.php +++ b/mod/file/index.php @@ -16,10 +16,10 @@ //set the title if (elgg_get_page_owner_guid() == get_loggedin_userid()) { $title = elgg_echo('file:yours'); - $area1 = elgg_view('page_elements/content_header', array('context' => "mine", 'type' => 'file')); + $area1 = elgg_view('page/elements/content_header', array('context' => "mine", 'type' => 'file')); } else { $title = elgg_echo("file:user",array(elgg_get_page_owner()->name)); - $area1 = elgg_view('page_elements/content_header', array('context' => "friends", 'type' => 'file')); + $area1 = elgg_view('page/elements/content_header', array('context' => "friends", 'type' => 'file')); } // Get objects |