diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-02-06 13:00:10 -0800 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-02-06 13:00:10 -0800 |
commit | 223f538bb8666c7943784c12f1213384df1a41c0 (patch) | |
tree | 01a184b9767ab8c8523fc3751f694cd67e5e6fee | |
parent | 2dfe67423da377999de7d3e239adf658bf6df0b5 (diff) | |
parent | a4f909cefd93928f87088b7111ed9f133786ebc3 (diff) | |
download | nextcloud-server-223f538bb8666c7943784c12f1213384df1a41c0.tar.gz nextcloud-server-223f538bb8666c7943784c12f1213384df1a41c0.zip |
Merge pull request #1500 from chriskoch/patch-1
Update lib/public/util.php
-rw-r--r-- | lib/public/util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/util.php b/lib/public/util.php index a78a52f326e..968ca891b4c 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -59,9 +59,9 @@ class Util { * @param string $fromname * @param bool $html */ - public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html=0, $altbody='', $ccaddress='', $ccname='', $bcc='') { + public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = '') { // call the internal mail class - \OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = ''); + \OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html, $altbody, $ccaddress, $ccname, $bcc); } /** |