]> source.dussan.org Git - nextcloud-server.git/commitdiff
make mail footer aware of different themes
authorBjörn Schießle <schiessle@owncloud.com>
Thu, 27 Jun 2013 16:28:53 +0000 (18:28 +0200)
committerBjörn Schießle <schiessle@owncloud.com>
Mon, 1 Jul 2013 08:47:44 +0000 (10:47 +0200)
Conflicts:

lib/mail.php

lib/mail.php

index e15af277a640ee47962a3c070f789eb5e952d1c7..d6a383fe003739928ca45da08f8f7d2c0edd1ef7 100644 (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);
 
        }