Skip to content

Commit

Permalink
Fixed issue #18706: Cannot use expression in End url description (#3204)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieljenik committed Jun 20, 2023
1 parent 43b0444 commit 97bb606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/SurveyRuntimeHelper.php
Expand Up @@ -1314,10 +1314,10 @@ private function moveSubmitIfNeeded()
}

$this->aSurveyInfo['aCompleted']['sPluginHTML'] = implode("\n", $blocks) . "\n";
$this->aSurveyInfo['aCompleted']['sSurveylsUrl'] = $this->aSurveyInfo['surveyls_url'];
$this->aSurveyInfo['surveyls_url'] = passthruReplace($this->aSurveyInfo['surveyls_url'], $this->aSurveyInfo);
$this->aSurveyInfo['surveyls_url'] = $this->processString($this->aSurveyInfo['surveyls_url'], 3, 1);
$this->aSurveyInfo['aCompleted']['sSurveylsUrl'] = $this->aSurveyInfo['surveyls_url'];
$this->aSurveyInfo['surveyls_urldescription'] = $this->processString($this->aSurveyInfo['surveyls_urldescription'], 3, 1);
$this->aSurveyInfo['aCompleted']['sSurveylsUrlDescription'] = $this->aSurveyInfo['surveyls_urldescription'];
if ($this->aSurveyInfo['aCompleted']['sSurveylsUrlDescription'] == "") {
$this->aSurveyInfo['aCompleted']['sSurveylsUrlDescription'] = $this->aSurveyInfo['surveyls_url'];
Expand Down

0 comments on commit 97bb606

Please sign in to comment.