summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2013-02-06 13:00:10 -0800
committerFrank Karlitschek <frank@owncloud.org>2013-02-06 13:00:10 -0800
commit223f538bb8666c7943784c12f1213384df1a41c0 (patch)
tree01a184b9767ab8c8523fc3751f694cd67e5e6fee
parent2dfe67423da377999de7d3e239adf658bf6df0b5 (diff)
parenta4f909cefd93928f87088b7111ed9f133786ebc3 (diff)
downloadnextcloud-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.php4
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);
}
/**