make mail footer aware of different themes

Conflicts:

	lib/mail.php
This commit is contained in:
Björn Schießle 2013-06-27 18:28:53 +02:00
parent 68369ebb86
commit f622f35a1a
1 changed files with 4 additions and 3 deletions

View File

@ -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);
}