diff options
author | Sem <sembrestels@riseup.net> | 2012-12-13 03:57:43 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-12-13 03:57:43 +0100 |
commit | 0ee05b2865942bad4cef7a1b038ad40fbdd602e1 (patch) | |
tree | b131b8063fe8fd295669cd0320e8f24ffcc64c0d /mod/file | |
parent | 239c21dbb324f65e589647ec01b9e5cd98bf2c80 (diff) | |
parent | 22a0edfb63d91074136067a163ee7cf7363b269f (diff) | |
download | elgg-0ee05b2865942bad4cef7a1b038ad40fbdd602e1.tar.gz elgg-0ee05b2865942bad4cef7a1b038ad40fbdd602e1.tar.bz2 |
Merge branch 'file-urls' of github.com:sembrestels/Elgg into foxglove-1
Diffstat (limited to 'mod/file')
-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 cc777d260..846ce1839 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; |