diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-05-29 14:58:00 -0700 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-05-29 14:58:00 -0700 |
commit | 2ce555fe55911ba5fe6c6bdbc6a306753b57ab6e (patch) | |
tree | 01ac972997b31525ff3dda62a2d28d72adfe8b6c | |
parent | 4a6f7746422e98630f279b1ac092fd95b12bc7c3 (diff) | |
parent | 5c04b3a63ad8ea831aa56f17dc8fcef7d33adbf5 (diff) | |
download | nextcloud-server-2ce555fe55911ba5fe6c6bdbc6a306753b57ab6e.tar.gz nextcloud-server-2ce555fe55911ba5fe6c6bdbc6a306753b57ab6e.zip |
Merge pull request #3533 from owncloud/signature-delimiter
fix wrong signature delimiter - fix #3523
-rw-r--r-- | lib/mail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mail.php b/lib/mail.php index 61634632efc..e15af277a64 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -113,7 +113,7 @@ class OC_Mail { */ public static function getfooter() { - $txt="\n--\n"; + $txt="\n-- \n"; $txt.="ownCloud\n"; $txt.="Your Cloud, Your Data, Your Way!\n"; return($txt); |