Browse Source

Did not need the trailing ";".

Kevin Wolf 8 years ago
parent
commit
b2ec36de09
1 changed files with 2 additions and 2 deletions
  1. 2 2
      templates/vhost/location_footer.erb

+ 2 - 2
templates/vhost/location_footer.erb

@@ -18,12 +18,12 @@
     <%- if value.is_a?(Hash) -%>
       <%- value.sort_by {|k,v| k}.each do |subkey,subvalue| -%>
         <%- Array(subvalue).each do |asubvalue| -%>
-    <%= key %> <%= subkey %> <%= asubvalue %>;
+    <%= key %> <%= subkey %> <%= asubvalue %>
         <%- end -%>
       <%- end -%>
     <%- else -%>
       <%- Array(value).each do |asubvalue| -%>
-    <%= key %> <%= asubvalue %>;
+    <%= key %> <%= asubvalue %>
       <%- end -%>
     <%- end -%>
   <%- end -%>