projects
/
GitHub
/
WoltLab
/
WCF.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4df33d6
)
Added missing dot in Mail.class.php.
author
Jim Martens
<jim1@live.de>
Mon, 26 Dec 2011 12:42:53 +0000
(13:42 +0100)
committer
Jim Martens
<jim1@live.de>
Mon, 26 Dec 2011 12:42:53 +0000
(13:42 +0100)
wcfsetup/install/files/lib/system/mail/Mail.class.php
patch
|
blob
|
blame
|
history
diff --git
a/wcfsetup/install/files/lib/system/mail/Mail.class.php
b/wcfsetup/install/files/lib/system/mail/Mail.class.php
index 106adbcf4e5f78c4d2ccbb3af81ce13e104fcc8b..23448446ed171a702e2ff2f92db19cd49f027075 100644
(file)
--- a/
wcfsetup/install/files/lib/system/mail/Mail.class.php
+++ b/
wcfsetup/install/files/lib/system/mail/Mail.class.php
@@
-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 : ''));
}
/**