diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 18:20:12 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 18:20:12 +0000 |
commit | 7ef25d91cd64f29fb064b29d8695dc50e5c6054d (patch) | |
tree | 68794061c1b9572997b0faedcd7d607469fc197e /mod/file | |
parent | e4158cbf4159183b7d9362cf30c7fd5dfb1d877a (diff) | |
download | elgg-7ef25d91cd64f29fb064b29d8695dc50e5c6054d.tar.gz elgg-7ef25d91cd64f29fb064b29d8695dc50e5c6054d.tar.bz2 |
Fixed #2887 redirects on blog, file, and pages works now - bookmarks plugin still needs plenty of work
git-svn-id: http://code.elgg.org/elgg/trunk@8167 36083f99-b078-4883-b0ff-0f9b5a30f544
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 { |