diff options
author | Joerg Bornschein <bornschein@fias.uni-frankfurt.de> | 2013-09-14 13:28:15 +0200 |
---|---|---|
committer | Joerg Bornschein <bornschein@fias.uni-frankfurt.de> | 2013-09-14 13:28:15 +0200 |
commit | c71460d2d3c6b868da099f090af812e15d552bb9 (patch) | |
tree | 6dad5cc0aaf8e5e2f45f69982fa0c08af3f14552 | |
parent | 83b212a4ef942ec34096c2d194f8dd827ef4eb8b (diff) | |
download | gitlab-ce-c71460d2d3c6b868da099f090af812e15d552bb9.tar.gz |
Use ruby 1.9 hash syntax
-rw-r--r-- | app/views/projects/new.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml index 9055c04b7fb..0213576927b 100644 --- a/app/views/projects/new.html.haml +++ b/app/views/projects/new.html.haml @@ -51,7 +51,7 @@ = f.label :public do %span Public project .controls - = f.check_box :public, { :checked => Gitlab.config.gitlab.default_projects_features.public }, true, false + = f.check_box :public, { checked: Gitlab.config.gitlab.default_projects_features.public }, true, false %span.help-inline Make project visible to everyone .form-actions |