Skip to content

Commit

Permalink
fix(textfield): abuse escaping
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry committed Dec 6, 2018
1 parent af7936a commit 167c43f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/fields/textfield.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function getValueForDesign() {
}

public function getValueForTargetText($richText) {
return Toolbox::addslashes_deep($this->value);
return $this->value;
}

public function getDocumentsForTarget() {
Expand Down

0 comments on commit 167c43f

Please sign in to comment.