Skip to content

Commit

Permalink
fix(dropdownfield): unwanted single quote escaping when rendering tar…
Browse files Browse the repository at this point in the history
…get ticket
btry committed Jul 3, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 68ebdca commit c149cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/fields/dropdownfield.class.php
Original file line number Diff line number Diff line change
@@ -245,7 +245,7 @@ public function getValueForTargetText($richText) {
} else {
$value = Dropdown::getDropdownName($DbUtil->getTableForItemType($itemtype), $this->value);
}
return Toolbox::addslashes_deep($value);
return $value;
}

public function getDocumentsForTarget() {

0 comments on commit c149cd4

Please sign in to comment.