encode more html entities
This commit is contained in:
parent
f173d50902
commit
bdcd935c3e
2 changed files with 2 additions and 1 deletions
|
@ -13,6 +13,7 @@ oml.ui.filter = function(id) {
|
||||||
: false,
|
: false,
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
|
format: Ox.encodeHTMLEntities,
|
||||||
id: 'name',
|
id: 'name',
|
||||||
operator: '+',
|
operator: '+',
|
||||||
title: Ox._(filter.title),
|
title: Ox._(filter.title),
|
||||||
|
|
|
@ -43,7 +43,7 @@ oml.ui.listDialog = function() {
|
||||||
closeButton: true,
|
closeButton: true,
|
||||||
content: Ox.LoadingScreen().start(),
|
content: Ox.LoadingScreen().start(),
|
||||||
height: 264,
|
height: 264,
|
||||||
title: getTitle(list),
|
title: Ox.encodeHTMLEntities(getTitle(list)),
|
||||||
width: 648 + Ox.UI.SCROLLBAR_SIZE
|
width: 648 + Ox.UI.SCROLLBAR_SIZE
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue