summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-01-15 09:16:07 -0600
committer=Corey Hulen <corey@hulen.com>2016-01-15 09:16:07 -0600
commitcc71c3e70646d4e8da5e8477933fc0c1576a3087 (patch)
tree324ff1a37a43c0a4ccae24b9990973f3d287bc47 /web
parent586967b757a869dbb5f3677e605009a1f5c61005 (diff)
parentc672820ff6a2a58d390c9bbc80fffdcc654e2716 (diff)
downloadchat-cc71c3e70646d4e8da5e8477933fc0c1576a3087.tar.gz
chat-cc71c3e70646d4e8da5e8477933fc0c1576a3087.tar.bz2
chat-cc71c3e70646d4e8da5e8477933fc0c1576a3087.zip
merging
Diffstat (limited to 'web')
-rw-r--r--web/react/components/user_settings/user_settings_security.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/user_settings/user_settings_security.jsx b/web/react/components/user_settings/user_settings_security.jsx
index d9c5f58a9..d1266dd3f 100644
--- a/web/react/components/user_settings/user_settings_security.jsx
+++ b/web/react/components/user_settings/user_settings_security.jsx
@@ -206,7 +206,7 @@ export default class SecurityTab extends React.Component {
<div>
<a
className='btn btn-primary'
- href={'/' + teamName + '/claim?email=' + user.email}
+ href={'/' + teamName + '/claim?email=' + encodeURIComponent(user.email)}
>
{'Switch to using email and password'}
</a>
@@ -221,7 +221,7 @@ export default class SecurityTab extends React.Component {
<div>
<a
className='btn btn-primary'
- href={'/' + teamName + '/claim?email=' + user.email + '&new_type=' + Constants.GITLAB_SERVICE}
+ href={'/' + teamName + '/claim?email=' + encodeURIComponent(user.email) + '&new_type=' + Constants.GITLAB_SERVICE}
>
{'Switch to using GitLab SSO'}
</a>
@@ -236,7 +236,7 @@ export default class SecurityTab extends React.Component {
<div>
<a
className='btn btn-primary'
- href={'/' + teamName + '/claim?email=' + user.email + '&new_type=' + Constants.GOOGLE_SERVICE}
+ href={'/' + teamName + '/claim?email=' + encodeURIComponent(user.email) + '&new_type=' + Constants.GOOGLE_SERVICE}
>
{'Switch to using Google SSO'}
</a>