mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
MDL-71022 gradereport_history: prevent double escaping of users.
The user identity fields are already escaped by the AJAX endpoint that returns them, we don't need to do it again at the client.
This commit is contained in:
parent
95dd305cc6
commit
c199eef7d7
@ -397,7 +397,7 @@ Y.namespace('M.gradereport_history').UserSelector = Y.extend(USERSELECTOR, M.cor
|
||||
'<div class="{{CSS.FULLNAME}}">' +
|
||||
'<label for="{{checkboxId}}">{{fullname}}</label>' +
|
||||
'</div>' +
|
||||
'<div id="{{extraFieldsId}}" class="{{CSS.EXTRAFIELDS}}">{{extrafields}}</div>' +
|
||||
'<div id="{{extraFieldsId}}" class="{{CSS.EXTRAFIELDS}}">{{{extrafields}}}</div>' +
|
||||
'</div>' +
|
||||
'</div>'
|
||||
);
|
||||
|
File diff suppressed because one or more lines are too long
@ -397,7 +397,7 @@ Y.namespace('M.gradereport_history').UserSelector = Y.extend(USERSELECTOR, M.cor
|
||||
'<div class="{{CSS.FULLNAME}}">' +
|
||||
'<label for="{{checkboxId}}">{{fullname}}</label>' +
|
||||
'</div>' +
|
||||
'<div id="{{extraFieldsId}}" class="{{CSS.EXTRAFIELDS}}">{{extrafields}}</div>' +
|
||||
'<div id="{{extraFieldsId}}" class="{{CSS.EXTRAFIELDS}}">{{{extrafields}}}</div>' +
|
||||
'</div>' +
|
||||
'</div>'
|
||||
);
|
||||
|
@ -395,7 +395,7 @@ Y.namespace('M.gradereport_history').UserSelector = Y.extend(USERSELECTOR, M.cor
|
||||
'<div class="{{CSS.FULLNAME}}">' +
|
||||
'<label for="{{checkboxId}}">{{fullname}}</label>' +
|
||||
'</div>' +
|
||||
'<div id="{{extraFieldsId}}" class="{{CSS.EXTRAFIELDS}}">{{extrafields}}</div>' +
|
||||
'<div id="{{extraFieldsId}}" class="{{CSS.EXTRAFIELDS}}">{{{extrafields}}}</div>' +
|
||||
'</div>' +
|
||||
'</div>'
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user