From c71460d2d3c6b868da099f090af812e15d552bb9 Mon Sep 17 00:00:00 2001 From: Joerg Bornschein Date: Sat, 14 Sep 2013 13:28:15 +0200 Subject: [PATCH] Use ruby 1.9 hash syntax --- app/views/projects/new.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml index 9055c04..0213576 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 -- libgit2 0.21.2