mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-27 11:10:10 +00:00
Fix xss in formating people list in sharing dialog
This commit is contained in:
parent
756177c952
commit
74b7428d21
@ -89,7 +89,7 @@ define([
|
||||
});
|
||||
|
||||
// use select2 to 'user' input in 'add user perm'
|
||||
$('[name="email"]', $add_user_perm).select2(Common.contactInputOptionsForSelect2);
|
||||
$('[name="email"]', $add_user_perm).select2(Common.contactInputOptionsForSelect2());
|
||||
|
||||
// use select2 to 'group' input in 'add group perm'
|
||||
var groups = app.pageOptions.groups || [],
|
||||
|
@ -409,7 +409,7 @@ define([
|
||||
|
||||
$('[name="emails"]', form).select2($.extend({
|
||||
width: '400px'
|
||||
},Common.contactInputOptionsForSelect2));
|
||||
},Common.contactInputOptionsForSelect2()));
|
||||
|
||||
form.removeClass('hide');
|
||||
},
|
||||
@ -458,7 +458,7 @@ define([
|
||||
|
||||
$('[name="emails"]', form).select2($.extend({
|
||||
width: '400px'
|
||||
},Common.contactInputOptionsForSelect2));
|
||||
},Common.contactInputOptionsForSelect2()));
|
||||
|
||||
var groups = app.pageOptions.groups || [];
|
||||
var g_opts = '';
|
||||
|
@ -477,7 +477,9 @@ define([
|
||||
});
|
||||
},
|
||||
|
||||
contactInputOptionsForSelect2: {
|
||||
contactInputOptionsForSelect2: function() {
|
||||
var _this = this;
|
||||
return {
|
||||
placeholder: gettext("Enter emails or select contacts"),
|
||||
|
||||
// with 'tags', the user can directly enter, not just select
|
||||
@ -503,7 +505,7 @@ define([
|
||||
// format items shown in the drop-down menu
|
||||
formatResult: function(item) {
|
||||
if (item.avatar) {
|
||||
return item.avatar + '<span class="text">' + item.name + '<br />' + item.id + '</span>';
|
||||
return item.avatar + '<span class="text">' + _this.HTMLescape(item.name) + '<br />' + _this.HTMLescape(item.id) + '</span>';
|
||||
} else {
|
||||
return; // if no match, show nothing
|
||||
}
|
||||
@ -511,9 +513,10 @@ define([
|
||||
|
||||
// format selected item shown in the input
|
||||
formatSelection: function(item) {
|
||||
return item.name || item.id; // if no name, show the email, i.e., when directly input, show the email
|
||||
return _this.HTMLescape(item.name || item.id); // if no name, show the email, i.e., when directly input, show the email
|
||||
},
|
||||
escapeMarkup: function(m) { return m; }
|
||||
}
|
||||
},
|
||||
|
||||
// check if a file is an image
|
||||
|
Loading…
Reference in New Issue
Block a user