From dbd0255ae788c09a3b4975b9b6b970d75ca7bac6 Mon Sep 17 00:00:00 2001 From: Jeremy Pearce Date: Wed, 9 Aug 2017 10:52:22 -0400 Subject: [PATCH 1/2] string moved into config --- html/controllers/mailer/contact.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/html/controllers/mailer/contact.php b/html/controllers/mailer/contact.php index 7917509478..3e12f5919c 100644 --- a/html/controllers/mailer/contact.php +++ b/html/controllers/mailer/contact.php @@ -117,9 +117,7 @@ = "Hello, {$_POST['name']}\n\n" . "This e-mail is to inform you that the XDMoD Portal Team has received your $message_type, and will\n" . "be in touch with you as soon as possible.\n\n" - . "The TAS Project Team\n" - . "Center for Computational Research\n" - . "University at Buffalo, SUNY\n"; + . \xd_utilities\getConfiguration('general', 'maintainer_email_signature'); // ------------------- From 5171ca2f738f6e3f4d340d0175f48de52681e287 Mon Sep 17 00:00:00 2001 From: Jeremy Pearce Date: Wed, 9 Aug 2017 11:34:35 -0400 Subject: [PATCH 2/2] changes --- html/controllers/mailer/contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/controllers/mailer/contact.php b/html/controllers/mailer/contact.php index 3e12f5919c..62b82a7a62 100644 --- a/html/controllers/mailer/contact.php +++ b/html/controllers/mailer/contact.php @@ -117,7 +117,7 @@ = "Hello, {$_POST['name']}\n\n" . "This e-mail is to inform you that the XDMoD Portal Team has received your $message_type, and will\n" . "be in touch with you as soon as possible.\n\n" - . \xd_utilities\getConfiguration('general', 'maintainer_email_signature'); + . MailTemplates::getMaintainerSignature(); // -------------------