encode html entities in sort titles / sort names
This commit is contained in:
parent
4a1aa73c76
commit
48e898e7ac
2 changed files with 4 additions and 0 deletions
|
@ -39,6 +39,7 @@ oml.ui.namesDialog = function() {
|
|||
columns: [
|
||||
{
|
||||
id: 'name',
|
||||
format: Ox.encodeHTMLEntities,
|
||||
operator: '+',
|
||||
removable: false,
|
||||
title: Ox._('Name'),
|
||||
|
@ -47,6 +48,7 @@ oml.ui.namesDialog = function() {
|
|||
},
|
||||
{
|
||||
editable: true,
|
||||
format: Ox.encodeHTMLEntities,
|
||||
id: 'sortname',
|
||||
operator: '+',
|
||||
title: Ox._('Sort Name'),
|
||||
|
|
|
@ -44,6 +44,7 @@ oml.ui.titlesDialog = function() {
|
|||
},
|
||||
{
|
||||
id: 'title',
|
||||
format: Ox.encodeHTMLEntities,
|
||||
operator: '+',
|
||||
removable: false,
|
||||
title: Ox._('Title'),
|
||||
|
@ -52,6 +53,7 @@ oml.ui.titlesDialog = function() {
|
|||
},
|
||||
{
|
||||
editable: true,
|
||||
format: Ox.encodeHTMLEntities,
|
||||
id: 'sorttitle',
|
||||
operator: '+',
|
||||
title: Ox._('Sort Title'),
|
||||
|
|
Loading…
Reference in a new issue