]> source.dussan.org Git - nextcloud-server.git/commitdiff
Revert santizing toaddress, because PHPMailer now throws exceptions
authorMichael Gapczynski <mtgap@owncloud.com>
Wed, 11 Jul 2012 20:02:43 +0000 (16:02 -0400)
committerMichael Gapczynski <mtgap@owncloud.com>
Wed, 11 Jul 2012 23:38:57 +0000 (19:38 -0400)
Conflicts:
apps/files_sharing/ajax/email.php

apps/files_sharing/ajax/email.php

index ba74f646e8356796dd84aa7093a0b9771f2398d9..edf9eca43136677c38263757cfde26234da1dcaa 100644 (file)
@@ -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);