diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 15:54:34 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 15:54:34 +0200 |
commit | 82a61e2e1a0f392759b69f7336213ff70a7bc877 (patch) | |
tree | a78094228b8454feb9212c2b7c3f54f5427fc03c /apps/files_sharing | |
parent | ff66600bc060dd2713b88b4af88e5a0a291710e0 (diff) | |
download | nextcloud-server-82a61e2e1a0f392759b69f7336213ff70a7bc877.tar.gz nextcloud-server-82a61e2e1a0f392759b69f7336213ff70a7bc877.zip |
port oc_preferences
Diffstat (limited to 'apps/files_sharing')
-rwxr-xr-x | apps/files_sharing/ajax/email.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php index b74e163b841..84202a23f5c 100755 --- a/apps/files_sharing/ajax/email.php +++ b/apps/files_sharing/ajax/email.php @@ -6,7 +6,7 @@ $user = OCP\USER::getUser(); $subject = $user + ' ' + 'shared a file with you'; $link = $_POST['link'] + '&f=' + $_POST['f']; $text = $user + ' ' + 'shared the file' + ' ' + $_POST['f'] + ' ' + 'with you.' + ' ' + 'It is available for download here:' + ' ' + $link; -$fromaddress = OC_Preferences::getValue($user, 'settings', 'email', 'sharing-noreply@'.$_SERVER['HTTP_HOST']); +$fromaddress = OCP\Config::getUserValue($user, 'settings', 'email', 'sharing-noreply@'.$_SERVER['HTTP_HOST']); OC_Mail::send($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user); ?>
\ No newline at end of file |