From 49e86ed7791cf170fb1b90de9b1773ccfabbdc3a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 27 Jun 2013 18:28:53 +0200 Subject: [PATCH] make mail footer aware of different themes --- lib/mail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mail.php b/lib/mail.php index 61634632efc..07b08557a7d 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -114,8 +114,8 @@ class OC_Mail { public static function getfooter() { $txt="\n--\n"; - $txt.="ownCloud\n"; - $txt.="Your Cloud, Your Data, Your Way!\n"; + $txt.=OC_Defaults::getName() . "\n"; + $txt.=OC_Defaults::getSlogan() . "\n"; return($txt); } -- 2.39.5