Skip to content

Commit

Permalink
Fixed issue #17676: Survey End URL Description gets scrambled if usin…
Browse files Browse the repository at this point in the history
…g html special chars (#2130)

Co-authored-by: encuestabizdevgit <devgit@encuesta.biz>
  • Loading branch information
gabrieljenik and encuestabizdevgit committed Nov 8, 2021
1 parent bfc4ddb commit cf75767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/database.php
Expand Up @@ -631,7 +631,7 @@ private function actionUpdateSurveyLocaleSettings($iSurveyID)
$data['surveyls_url'] = htmlspecialchars($sURL);
}
if ($sURLDescription !== null) {
$data['surveyls_urldescription'] = htmlspecialchars($sURLDescription);
$data['surveyls_urldescription'] = $sURLDescription;
}
if ($dateformat !== null) {
$data['surveyls_dateformat'] = $dateformat;
Expand Down

0 comments on commit cf75767

Please sign in to comment.