Ox.encodeHTMLEntities list title
This commit is contained in:
parent
27497f9711
commit
206e39c62d
1 changed files with 1 additions and 1 deletions
|
@ -799,7 +799,7 @@ oml.getLists = function(callback) {
|
||||||
return Ox.extend(list, {
|
return Ox.extend(list, {
|
||||||
editable: list.user == '' && list.type == 'static',
|
editable: list.user == '' && list.type == 'static',
|
||||||
own: list.user == '',
|
own: list.user == '',
|
||||||
title: (list.user ? list.user + ': ' : '') + list.name
|
title: Ox.encodeHTMLEntities((list.user ? list.user + ': ' : '') + list.name)
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
callback(ui._lists);
|
callback(ui._lists);
|
||||||
|
|
Loading…
Reference in a new issue