]> source.dussan.org Git - nextcloud-server.git/commitdiff
Checkstyle: fix the last NoSpaceAfterEquals
authorFelix Moeller <mail@felixmoeller.de>
Sun, 4 Nov 2012 17:31:44 +0000 (18:31 +0100)
committerFelix Moeller <mail@felixmoeller.de>
Sun, 4 Nov 2012 17:31:44 +0000 (18:31 +0100)
lib/public/util.php

index 6ce79715b6fe7a6578edf92f115f035c89746488..7b5b1abbded296873353858179cb40b0abcadef3 100644 (file)
@@ -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 = '');
        }
 
        /**