summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorJon Evans <jon@craftyjon.com>2013-02-06 09:26:46 -0500
committerJon Evans <jon@craftyjon.com>2013-02-06 09:26:46 -0500
commitc9777518e3455913389128a272e0c3e6c0a74d63 (patch)
tree81bf395e0890fc1981079b2c229b7a8136f9d910 /app
parent4ce3ef41deb59e5ff9da6f879c27d65677997477 (diff)
downloadgitlab-ce-c9777518e3455913389128a272e0c3e6c0a74d63.tar.gz
Ruby 1.9 hash syntax
Diffstat (limited to 'app')
-rw-r--r--app/views/admin/users/_form.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/users/_form.html.haml b/app/views/admin/users/_form.html.haml
index f833c295936..8684a90202a 100644
--- a/app/views/admin/users/_form.html.haml
+++ b/app/views/admin/users/_form.html.haml
@@ -11,17 +11,17 @@
.clearfix
= f.label :name
.input
- = f.text_field :name, required: true, :autocomplete => "off"
+ = f.text_field :name, required: true, autocomplete: "off"
%span.help-inline * required
.clearfix
= f.label :username
.input
- = f.text_field :username, required: true, :autocomplete => "off"
+ = f.text_field :username, required: true, autocomplete: "off"
%span.help-inline * required
.clearfix
= f.label :email
.input
- = f.text_field :email, required: true, :autocomplete => "off"
+ = f.text_field :email, required: true, autocomplete:"off"
%span.help-inline * required
%fieldset