Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1128 from mleanos/bugfix/gh-1127
Browse files Browse the repository at this point in the history
fix(users): ProfileImageURL sanitize with ngSanitize
  • Loading branch information
lirantal committed Jan 17, 2016
2 parents 959d03c + f88f28e commit 6658774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/server/controllers/core.server.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports.renderIndex = function (req, res) {
username: validator.escape(req.user.username),
created: req.user.created.toString(),
roles: req.user.roles,
profileImageURL: validator.escape(req.user.profileImageURL),
profileImageURL: req.user.profileImageURL,
email: validator.escape(req.user.email),
lastName: validator.escape(req.user.lastName),
firstName: validator.escape(req.user.firstName)
Expand Down

0 comments on commit 6658774

Please sign in to comment.