From 5be4e5840e0d66bcd163433548c56034e56acfde Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Sat, 14 Oct 2017 12:55:31 +0200 Subject: [PATCH] Fixed issue #12785: Some placeholders in e-mail templates do not take 'publicurl' setting into account --- application/helpers/frontend_helper.php | 1 - 1 file changed, 1 deletion(-) diff --git a/application/helpers/frontend_helper.php b/application/helpers/frontend_helper.php index b7a234d4673..dda16dbff3b 100644 --- a/application/helpers/frontend_helper.php +++ b/application/helpers/frontend_helper.php @@ -663,7 +663,6 @@ function sendSubmitNotifications($surveyid) $srid = $_SESSION['survey_'.$surveyid]['srid']; $aReplacementVars['ADMINNAME'] = $thissurvey['adminname']; $aReplacementVars['ADMINEMAIL'] = $thissurvey['adminemail']; - debugbreak(); $aReplacementVars['VIEWRESPONSEURL']=Yii::app()->getController()->createAbsoluteUrl("/admin/responses/sa/view/surveyid/{$surveyid}/id/{$srid}"); $aReplacementVars['EDITRESPONSEURL']=Yii::app()->getController()->createAbsoluteUrl("/admin/dataentry/sa/editdata/subaction/edit/surveyid/{$surveyid}/id/{$srid}"); $aReplacementVars['STATISTICSURL']=Yii::app()->getController()->createAbsoluteUrl("/admin/statistics/sa/index/surveyid/{$surveyid}");