Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
moodle
moodle
Commits
7d177640
Commit
7d177640
authored
May 26, 2021
by
Paul Holden
Committed by
Eloy Lafuente
Jul 08, 2021
Browse files
MDL-71760 admin: escape identity fields in token management table.
parent
2408f983
Changes
1
Hide whitespace changes
Inline
Side-by-side
webservice/classes/token_table.php
View file @
7d177640
...
...
@@ -151,7 +151,7 @@ class token_table extends \table_sql {
$identity
=
[];
foreach
(
$this
->
userextrafields
as
$userextrafield
)
{
$identity
[]
=
$data
->
$userextrafield
;
$identity
[]
=
s
(
$data
->
$userextrafield
)
;
}
$userprofilurl
=
new
\
moodle_url
(
'/user/profile.php'
,
[
'id'
=>
$data
->
userid
]);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment