We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfc8475 commit 0418dd9Copy full SHA for 0418dd9
interface/lib/classes/tform_base.inc.php
@@ -1488,8 +1488,10 @@ function showForm() {
1488
$app->tpl->setVar('form_hint', $form_hint);
1489
1490
// Set Wordbook for this form
1491
-
1492
- $app->tpl->setVar($this->wordbook);
+ foreach($this->wordbook as $key => $val) {
+ if(strstr($val,'\'')) $val = stripslashes($val);
1493
+ $app->tpl->setVar($key,$val);
1494
+ }
1495
}
1496
1497
function getDataRecord($primary_id) {
0 commit comments