diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-11 16:02:43 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-11 19:38:57 -0400 |
commit | 7b2ec414773d020b756d84e7bd95e03c0791634d (patch) | |
tree | 73b8b8666542a80bd107f7d4c25a916deba33e66 | |
parent | 632fc6ec619f2bb2c17f85f7bf53db8ba2a91d36 (diff) | |
download | nextcloud-server-7b2ec414773d020b756d84e7bd95e03c0791634d.tar.gz nextcloud-server-7b2ec414773d020b756d84e7bd95e03c0791634d.zip |
Revert santizing toaddress, because PHPMailer now throws exceptions
Conflicts:
apps/files_sharing/ajax/email.php
-rw-r--r-- | apps/files_sharing/ajax/email.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php index ba74f646e83..edf9eca4313 100644 --- a/apps/files_sharing/ajax/email.php +++ b/apps/files_sharing/ajax/email.php @@ -3,10 +3,9 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('files_sharing'); $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);
\ No newline at end of file +OCP\Util::sendMail($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user); |