aboutsummaryrefslogtreecommitdiff
path: root/mod/file/actions/file/upload.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/file/actions/file/upload.php')
-rw-r--r--mod/file/actions/file/upload.php8
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 {