Skip to content

Commit

Permalink
Removed obsolete escaping, fixes #674
Browse files Browse the repository at this point in the history
  • Loading branch information
Felicia Hummel committed Jul 18, 2016
1 parent c63576d commit cf2e52c
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,7 @@ Ext.define('PartKeepr.PartDisplay', {
for (var i in this.fieldConfigs) {
value = this.record.get(i);
if (value !== undefined) {
if (typeof(value === "string")) {
values[i] = htmlentities(value); // phpjs
} else {
values[i] = value;
}
values[i] = value;
} else {
values[i] = i18n("none");
}
Expand Down

0 comments on commit cf2e52c

Please sign in to comment.