diff options
author | Sem <sembrestels@riseup.net> | 2012-12-13 03:22:22 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-12-13 03:22:22 +0100 |
commit | 22a0edfb63d91074136067a163ee7cf7363b269f (patch) | |
tree | d4e6a25eb1acb42d5a9e9f184e0c216b1bf47f5f | |
parent | 6623571b615fc5c9d1b82e2607de4cdaee8a818b (diff) | |
download | elgg-22a0edfb63d91074136067a163ee7cf7363b269f.tar.gz elgg-22a0edfb63d91074136067a163ee7cf7363b269f.tar.bz2 |
Improving file 1.7 url compatibility.
-rw-r--r-- | mod/file/start.php | 6 |
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; |