diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-30 22:15:36 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-30 22:15:36 +0000 |
commit | 9255088a79a034c3cdf4eb46124504b9dd0c838e (patch) | |
tree | a225048f7475ea8ddb4820b539f8482655d9da8e /mod/file/actions | |
parent | 323e3ee1dafdf7bdd60607fd960e53957fce770d (diff) | |
download | elgg-9255088a79a034c3cdf4eb46124504b9dd0c838e.tar.gz elgg-9255088a79a034c3cdf4eb46124504b9dd0c838e.tar.bz2 |
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
Diffstat (limited to 'mod/file/actions')
-rw-r--r-- | mod/file/actions/save.php | 4 | ||||
-rw-r--r-- | mod/file/actions/upload.php | 2 |
2 files changed, 3 insertions, 3 deletions
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 { |