Skip to content

Commit

Permalink
Merge pull request #225 from chrisdambrosio/patch-1
Browse files Browse the repository at this point in the history
Fix index_files ivar warning
  • Loading branch information
James Fryman committed Jan 6, 2014
2 parents 7d5cb88 + 78e025b commit ecdcabe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/vhost/vhost_location_directory.erb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
autoindex on;
<% end -%>
<% if @index_files.count > 0 -%>
index <% Array(index_files).each do |i| %> <%= i %><% end %>;
index <% Array(@index_files).each do |i| %> <%= i %><% end %>;
<% end -%>
<% if defined? @auth_basic -%>
auth_basic "<%= @auth_basic %>";
Expand Down

0 comments on commit ecdcabe

Please sign in to comment.