Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-06-27 20:28:53 +0400
committerBjörn Schießle <schiessle@owncloud.com>2013-06-27 20:28:53 +0400
commit49e86ed7791cf170fb1b90de9b1773ccfabbdc3a (patch)
tree08a605d0e651964ab5425e253610f63d52198450 /lib/mail.php
parentf8374faa08f47c5c6387acff8e3a79c664901877 (diff)
make mail footer aware of different themes
Diffstat (limited to 'lib/mail.php')
-rw-r--r--lib/mail.php4
1 files 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);
}