Skip to content

Commit

Permalink
Merge pull request #689 from partkeepr/PartKeepr-674
Browse files Browse the repository at this point in the history
Removed obsolete escaping, fixes #674
  • Loading branch information
Felicia Hummel authored Jul 23, 2016
2 parents fd7b79d + cf2e52c commit 1ea33d1
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 1ea33d1

Please sign in to comment.