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
  • Loading branch information
btry committed Jul 3, 2019
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
Expand Up @@ -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() {
Expand Down

0 comments on commit c149cd4

Please sign in to comment.