diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-12-19 12:23:08 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-12-19 12:23:08 +0100 |
commit | 6a3b6365e6f80b44d42f97bf1f6140d4a8cb2090 (patch) | |
tree | 326e7b4b7fdfed39239dd299fe49dc30a07f1274 /server/sonar-web | |
parent | 1be6148ae4371650449a905d2237fa6abee8e1f5 (diff) | |
download | sonarqube-6a3b6365e6f80b44d42f97bf1f6140d4a8cb2090.tar.gz sonarqube-6a3b6365e6f80b44d42f97bf1f6140d4a8cb2090.zip |
SONAR-5830 Fix wrong html id
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/views/users/_edit_form.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/users/_edit_form.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/users/_edit_form.html.erb index 59d0216f32d..17fc622e600 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/users/_edit_form.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/users/_edit_form.html.erb @@ -6,7 +6,7 @@ <div class="modal-body"> <div class="modal-error"></div> <div class="modal-field"> - <input type="hidden" value="<%= @user.login() %>" name="user[login]" id="user_name"/> + <input type="hidden" value="<%= @user.login() %>" name="user[login]" id="user_login"/> </div> <div class="modal-field"> <label for="user[]">Name<em class="mandatory">*</em></label> |