From f622f35a1aee9144fe3f00f2e722fb4b08e7d065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?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 Conflicts: lib/mail.php --- lib/mail.php | 7 ++++--- 1 file 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); }