diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-31 20:26:09 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-31 20:26:09 +0200 |
commit | d4ea853fcf3b3f82e2e489c81280b27bfbd62bf3 (patch) | |
tree | 606ec92fd57a5486d6e3468b8e1e1b463779c77d /apps/files_sharing | |
parent | f0bd57186686689d0f65c356cd7f226c045dd6e3 (diff) | |
download | nextcloud-server-d4ea853fcf3b3f82e2e489c81280b27bfbd62bf3.tar.gz nextcloud-server-d4ea853fcf3b3f82e2e489c81280b27bfbd62bf3.zip |
use our own serverHost call so that ownCloud works with reverse proxy servers
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/ajax/email.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php index 163683cd0e3..523c3d2078b 100644 --- a/apps/files_sharing/ajax/email.php +++ b/apps/files_sharing/ajax/email.php @@ -7,7 +7,7 @@ $type = (strpos($_POST['file'], '.') === false) ? 'folder' : 'file'; $subject = $user.' shared a '.$type.' with you'; $link = $_POST['link']; $text = $user.' shared the '.$type.' '.$_POST['file'].' with you. It is available for download here: '.$link; -$fromaddress = OCP\Config::getUserValue($user, 'settings', 'email', 'sharing-noreply@'.$_SERVER['HTTP_HOST']); +$fromaddress = OCP\Config::getUserValue($user, 'settings', 'email', 'sharing-noreply@'.OCP\Util::getServerHost()); OC_Mail::send($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user); -?>
\ No newline at end of file +?> |