Skip to content

Commit

Permalink
Fixed issue #8323: (span) tags in confirmation messages when survey i…
Browse files Browse the repository at this point in the history
…n all-in-one mode
  • Loading branch information
c-schmitz committed Nov 20, 2013
1 parent d2b9337 commit c21e236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/helpers/frontend_helper.php
Expand Up @@ -1181,8 +1181,8 @@ function sendSubmitNotifications($surveyid)
$redata=compact(array_keys(get_defined_vars()));
if (count($aEmailNotificationTo)>0)
{
$sMessage=templatereplace($thissurvey['email_admin_notification'],$aReplacementVars,$redata,'frontend_helper[1398]',($thissurvey['anonymized'] == "Y"));
$sSubject=templatereplace($thissurvey['email_admin_notification_subj'],$aReplacementVars,$redata,'frontend_helper[1399]',($thissurvey['anonymized'] == "Y"));
$sMessage=templatereplace($thissurvey['email_admin_notification'],$aReplacementVars,$redata,'frontend_helper[1398]',($thissurvey['anonymized'] == "Y"),NULL, array(), true);
$sSubject=templatereplace($thissurvey['email_admin_notification_subj'],$aReplacementVars,$redata,'frontend_helper[1399]',($thissurvey['anonymized'] == "Y"),NULL, array(), true);
foreach ($aEmailNotificationTo as $sRecipient)
{
if (!SendEmailMessage($sMessage, $sSubject, $sRecipient, $sFrom, $sitename, true, getBounceEmail($surveyid)))
Expand Down

0 comments on commit c21e236

Please sign in to comment.