summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-11-04 18:31:44 +0100
committerFelix Moeller <mail@felixmoeller.de>2012-11-04 18:31:44 +0100
commitbc4382c5c5649c3ad0e9e3be18a747815473f9fe (patch)
tree4b59a97103018ca6c9772848144e6de5df0b4c9f /lib/public
parent0e70ea9d8baa449ee3c8309f2b6a59ce06a55926 (diff)
downloadnextcloud-server-bc4382c5c5649c3ad0e9e3be18a747815473f9fe.tar.gz
nextcloud-server-bc4382c5c5649c3ad0e9e3be18a747815473f9fe.zip
Checkstyle: fix the last NoSpaceAfterEquals
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/util.php2
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 = '');
}
/**