Commit c71460d2d3c6b868da099f090af812e15d552bb9
1 parent
83b212a4
Exists in
master
and in
4 other branches
Use ruby 1.9 hash syntax
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/projects/new.html.haml
... | ... | @@ -51,7 +51,7 @@ |
51 | 51 | = f.label :public do |
52 | 52 | %span Public project |
53 | 53 | .controls |
54 | - = f.check_box :public, { :checked => Gitlab.config.gitlab.default_projects_features.public }, true, false | |
54 | + = f.check_box :public, { checked: Gitlab.config.gitlab.default_projects_features.public }, true, false | |
55 | 55 | %span.help-inline Make project visible to everyone |
56 | 56 | |
57 | 57 | .form-actions | ... | ... |