Skip to content

Commit 0418dd9

Browse files
author
Till Brehm
committed
Fixed #4064 Fix display of "Let\'s Encrypt available"
1 parent cfc8475 commit 0418dd9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

interface/lib/classes/tform_base.inc.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1488,8 +1488,10 @@ function showForm() {
14881488
$app->tpl->setVar('form_hint', $form_hint);
14891489

14901490
// Set Wordbook for this form
1491-
1492-
$app->tpl->setVar($this->wordbook);
1491+
foreach($this->wordbook as $key => $val) {
1492+
if(strstr($val,'\'')) $val = stripslashes($val);
1493+
$app->tpl->setVar($key,$val);
1494+
}
14931495
}
14941496

14951497
function getDataRecord($primary_id) {

0 commit comments

Comments
 (0)