diff options
Diffstat (limited to 'mod/file')
-rw-r--r-- | mod/file/actions/file/upload.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mod/file/actions/file/upload.php b/mod/file/actions/file/upload.php index 1a30b6cef..2749812d5 100644 --- a/mod/file/actions/file/upload.php +++ b/mod/file/actions/file/upload.php @@ -185,8 +185,12 @@ if ($new_file) { } if (!$ajax) { - $container_user = get_entity($container_guid); - forward(elgg_get_site_url() . "pg/file/" . $container_user->username); + $container = get_entity($container_guid); + if (elgg_instanceof($container, 'group')) { + forward("pg/file/group/$container->guid/owner"); + } else { + forward("pg/file/owner/$container->username"); + } } } else { |