Fix deprecated variable access warning in vhost footer template
This commit is contained in:
parent
30d62246b2
commit
05c260a963
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ include <%= file %>;
|
|||
<%# make sure that allow comes before deny by forcing the allow key (if it -%>
|
||||
<%# exists) to be first in the output order. The hash keys also need to be -%>
|
||||
<%# sorted so that the ordering is stable. -%>
|
||||
<% if @vhost_cfg_append -%><% vhost_cfg_append.sort_by{ |k, v| k.to_s == 'allow' ? '' : k.to_s }.each do |key,value| -%>
|
||||
<% if @vhost_cfg_append -%><% @vhost_cfg_append.sort_by{ |k, v| k.to_s == 'allow' ? '' : k.to_s }.each do |key,value| -%>
|
||||
<%= key %> <%= value %>;
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
|
|
Loading…
Reference in a new issue