summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-07-11 16:02:43 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-07-11 16:02:43 -0400
commit91a15bae76c4c4fca456c38fb51c8b944c92c341 (patch)
tree776b651f5264e96dab4665dc4480eef46d7dbd6b /apps
parent281bf62af93e373d761b767af6cc316e4681d66a (diff)
downloadnextcloud-server-91a15bae76c4c4fca456c38fb51c8b944c92c341.tar.gz
nextcloud-server-91a15bae76c4c4fca456c38fb51c8b944c92c341.zip
Revert santizing toaddress, because PHPMailer now throws exceptions
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/ajax/email.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php
index 0765bdd9885..3026eb74675 100644
--- a/apps/files_sharing/ajax/email.php
+++ b/apps/files_sharing/ajax/email.php
@@ -5,10 +5,9 @@ OCP\JSON::callCheck();
$user = OCP\USER::getUser();
// TODO translations
-$toaddress = OCP\Util::sanitizeHtml($_POST['toaddress']);
$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@'.OCP\Util::getServerHost());
-OCP\Util::sendMail($toaddress, $toaddress, $subject, $text, $fromaddress, $user);
+OCP\Util::sendMail($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user);