Added missing dot in Mail.class.php.
authorJim Martens <jim1@live.de>
Mon, 26 Dec 2011 12:42:53 +0000 (13:42 +0100)
committerJim Martens <jim1@live.de>
Mon, 26 Dec 2011 12:42:53 +0000 (13:42 +0100)
wcfsetup/install/files/lib/system/mail/Mail.class.php

index 106adbcf4e5f78c4d2ccbb3af81ce13e104fcc8b..23448446ed171a702e2ff2f92db19cd49f027075 100644 (file)
@@ -256,7 +256,7 @@ class Mail {
         * @return      string
         */
        public function getMessage() {
-               return preg_replace('%(\r\n|\r|\n)%', self::$crlf, $this->message . (MAIL_SIGNATURE ? self::$crlf . '-- ' . self::$crlf  MAIL_SIGNATURE : ''));
+               return preg_replace('%(\r\n|\r|\n)%', self::$crlf, $this->message . (MAIL_SIGNATURE ? self::$crlf . '-- ' . self::$crlf . MAIL_SIGNATURE : ''));
        }
        
        /**