diff options
author | Jon Evans <jon@craftyjon.com> | 2013-02-06 09:26:46 -0500 |
---|---|---|
committer | Jon Evans <jon@craftyjon.com> | 2013-02-06 09:26:46 -0500 |
commit | c9777518e3455913389128a272e0c3e6c0a74d63 (patch) | |
tree | 81bf395e0890fc1981079b2c229b7a8136f9d910 /app | |
parent | 4ce3ef41deb59e5ff9da6f879c27d65677997477 (diff) | |
download | gitlab-ce-c9777518e3455913389128a272e0c3e6c0a74d63.tar.gz |
Ruby 1.9 hash syntax
Diffstat (limited to 'app')
-rw-r--r-- | app/views/admin/users/_form.html.haml | 6 |
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 |