diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:31:44 +0100 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:31:44 +0100 |
commit | bc4382c5c5649c3ad0e9e3be18a747815473f9fe (patch) | |
tree | 4b59a97103018ca6c9772848144e6de5df0b4c9f /lib/public/util.php | |
parent | 0e70ea9d8baa449ee3c8309f2b6a59ce06a55926 (diff) | |
download | nextcloud-server-bc4382c5c5649c3ad0e9e3be18a747815473f9fe.tar.gz nextcloud-server-bc4382c5c5649c3ad0e9e3be18a747815473f9fe.zip |
Checkstyle: fix the last NoSpaceAfterEquals
Diffstat (limited to 'lib/public/util.php')
-rw-r--r-- | lib/public/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/util.php b/lib/public/util.php index 6ce79715b6f..7b5b1abbded 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -61,7 +61,7 @@ class Util { */ 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 = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = ''); } /** |