Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Bornschein <bornschein@fias.uni-frankfurt.de>2013-09-14 15:28:15 +0400
committerJoerg Bornschein <bornschein@fias.uni-frankfurt.de>2013-09-14 15:28:15 +0400
commitc71460d2d3c6b868da099f090af812e15d552bb9 (patch)
tree6dad5cc0aaf8e5e2f45f69982fa0c08af3f14552 /app/views/projects/new.html.haml
parent83b212a4ef942ec34096c2d194f8dd827ef4eb8b (diff)
Use ruby 1.9 hash syntax
Diffstat (limited to 'app/views/projects/new.html.haml')
-rw-r--r--app/views/projects/new.html.haml2
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