aboutsummaryrefslogtreecommitdiff
path: root/mod/file/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/file/start.php')
-rw-r--r--mod/file/start.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/file/start.php b/mod/file/start.php
index 172042332..cff09bd1e 100644
--- a/mod/file/start.php
+++ b/mod/file/start.php
@@ -121,8 +121,12 @@ function file_page_handler($page) {
file_register_toggle();
include "$file_dir/friends.php";
break;
- case 'view':
case 'read': // Elgg 1.7 compatibility
+ $entity = get_entity((int) $page[1]);
+ if ($entity) {
+ elgg_set_page_owner_guid($entity->getContainerGUID());
+ }
+ case 'view':
set_input('guid', $page[1]);
include "$file_dir/view.php";
break;