From 9255088a79a034c3cdf4eb46124504b9dd0c838e Mon Sep 17 00:00:00 2001 From: ewinslow Date: Sat, 30 Oct 2010 22:15:36 +0000 Subject: Refs #2598: Converted virtually all uses of $CONFIG->wwwroot to elgg_get_site_url() git-svn-id: http://code.elgg.org/elgg/trunk@7146 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/file/actions/save.php | 4 ++-- mod/file/actions/upload.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/file/actions') diff --git a/mod/file/actions/save.php b/mod/file/actions/save.php index 923bc043b..17a9b16fb 100644 --- a/mod/file/actions/save.php +++ b/mod/file/actions/save.php @@ -17,7 +17,7 @@ if (!$file = get_entity($guid)) { register_error(elgg_echo("file:uploadfailed")); - forward($CONFIG->wwwroot . "pg/file/" . get_loggedin_user()->username); + forward(elgg_get_site_url() . "pg/file/" . get_loggedin_user()->username); exit; } @@ -44,5 +44,5 @@ else register_error(elgg_echo("file:uploadfailed")); - forward($CONFIG->wwwroot . "pg/file/" . $container->username); + forward(elgg_get_site_url() . "pg/file/" . $container->username); ?> \ No newline at end of file diff --git a/mod/file/actions/upload.php b/mod/file/actions/upload.php index 367488d7c..82744730c 100644 --- a/mod/file/actions/upload.php +++ b/mod/file/actions/upload.php @@ -193,7 +193,7 @@ if (!$ajax) { $container_user = get_entity($container_guid); - forward($CONFIG->wwwroot . "pg/file/" . $container_user->username); + forward(elgg_get_site_url() . "pg/file/" . $container_user->username); } } else { -- cgit v1.2.3