diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-06-27 18:28:53 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-07-01 10:47:44 +0200 |
commit | f622f35a1aee9144fe3f00f2e722fb4b08e7d065 (patch) | |
tree | accfedfa400612c0061cde72cd28fb08e976e8ac | |
parent | 68369ebb8654476ddead70e621b5f68079d6e29c (diff) | |
download | nextcloud-server-f622f35a1aee9144fe3f00f2e722fb4b08e7d065.tar.gz nextcloud-server-f622f35a1aee9144fe3f00f2e722fb4b08e7d065.zip |
make mail footer aware of different themes
Conflicts:
lib/mail.php
-rw-r--r-- | lib/mail.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/mail.php b/lib/mail.php index e15af277a64..d6a383fe003 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -113,9 +113,10 @@ class OC_Mail { */ public static function getfooter() { - $txt="\n-- \n"; - $txt.="ownCloud\n"; - $txt.="Your Cloud, Your Data, Your Way!\n"; + $txt="\n--\n"; + $txt.=OC_Defaults::getName() . "\n"; + $txt.=OC_Defaults::getSlogan() . "\n"; + return($txt); } |