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