From 085f3356b92d776d6b82da9fa1830e65c57cbdbc Mon Sep 17 00:00:00 2001 From: Andrzej Zaborowski Date: Fri, 23 Dec 2011 01:59:32 +0100 Subject: [PATCH] Fix a nil check in Contributor Terms display --- app/views/user/_terms.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/user/_terms.html.erb b/app/views/user/_terms.html.erb index cc8387319..11c3f5049 100644 --- a/app/views/user/_terms.html.erb +++ b/app/views/user/_terms.html.erb @@ -6,7 +6,7 @@
  1. <%= raw @text['section_1'] %>

    - <% unless raw @text['section_1a'].nil? %> + <% unless @text['section_1a'].nil? %>
    1. <%= raw @text['section_1a'] %>
    2. <%= raw @text['section_1b'] %>
    3. -- 2.43.2