From 7bef30b6c3c11db1daf73f6349029dd49ba29ffc Mon Sep 17 00:00:00 2001 From: oharsta Date: Tue, 22 Oct 2013 13:41:13 +0200 Subject: [PATCH] Bugfix for correct subject in the profile debug mail --- application/modules/Profile/Controller/AttributeSupport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/modules/Profile/Controller/AttributeSupport.php b/application/modules/Profile/Controller/AttributeSupport.php index bdb0f21119..82a3be33ea 100644 --- a/application/modules/Profile/Controller/AttributeSupport.php +++ b/application/modules/Profile/Controller/AttributeSupport.php @@ -51,7 +51,7 @@ protected function _sendAttributeSupportMail() { $mailer = new Zend_Mail('UTF-8'); $mailer->setFrom($email); $mailer->addTo($email); - $mailer->setSubject(sprintf("Personal debug info of (%s)", $nameId)); + $mailer->setSubject(sprintf("Personal debug info of %s", $nameId)); $mailer->setBodyHtml($body); $mailer->send(); }