From: Björn Schießle Date: Thu, 27 Jun 2013 16:28:53 +0000 (+0200) Subject: make mail footer aware of different themes X-Git-Tag: v6.0.0alpha2~553 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f622f35a1aee9144fe3f00f2e722fb4b08e7d065;p=nextcloud-server.git make mail footer aware of different themes Conflicts: lib/mail.php --- 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); }