Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Document] SEO editor - encode text values properly
  • Loading branch information
brusch committed Aug 31, 2021
1 parent 8d7c7f6 commit aadd378
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -74,14 +74,17 @@ pimcore.document.seopanel = Class.create({
xtype: 'treecolumn',
text: t("name"),
dataIndex: 'text',
renderer: Ext.util.Format.htmlEncode,
width: 300
},{
text: t("pretty_url"),
dataIndex: 'prettyUrl',
renderer: Ext.util.Format.htmlEncode,
width: 180
},{
text: t("title"),
dataIndex: 'title',
renderer: Ext.util.Format.htmlEncode,
width: 230
},{
text: t("length"),
Expand All @@ -90,6 +93,7 @@ pimcore.document.seopanel = Class.create({
},{
text: t("description"),
dataIndex: 'description',
renderer: Ext.util.Format.htmlEncode,
width: 400
},{
text: t("length"),
Expand Down

0 comments on commit aadd378

Please sign in to comment.