Skip to content

Commit

Permalink
Bugfix for correct subject in the profile debug mail
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Oct 22, 2013
1 parent d92b993 commit 7bef30b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 7bef30b

Please sign in to comment.