Skip to content

Commit

Permalink
Merge pull request #89 from moleculezz/fix/unquote-directives
Browse files Browse the repository at this point in the history
Remove quotes from directives
  • Loading branch information
Rockstar04 committed Jul 31, 2015
2 parents 666551f + 58bcea4 commit 41c07b6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion templates/centos/php.ini.erb
Original file line number Diff line number Diff line change
Expand Up @@ -1221,5 +1221,5 @@ soap.wsdl_cache_ttl=86400
; End:

<% @directives.sort_by { |key, val| key }.each do |directive, value| -%>
<%= "#{directive}=\"#{value}\"" %>
<%= "#{directive}=#{value}" %>
<% end -%>
2 changes: 1 addition & 1 deletion templates/debian/php.ini.erb
Original file line number Diff line number Diff line change
Expand Up @@ -1853,5 +1853,5 @@ ldap.max_links = -1
; End:

<% @directives.sort_by { |key, val| key }.each do |directive, value| -%>
<%= "#{directive}=\"#{value}\"" %>
<%= "#{directive}=#{value}" %>
<% end -%>
2 changes: 1 addition & 1 deletion templates/default/extension.ini.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
<%= 'zend_' if zend %>extension=<%= filepath %>
<% end -%>
<% @directives.each do |k,v| -%>
<%= "#{@name}.#{k}=\"#{v}\"" %>
<%= "#{@name}.#{k}=#{v}" %>
<% end -%>
2 changes: 1 addition & 1 deletion templates/default/php.ini.erb
Original file line number Diff line number Diff line change
Expand Up @@ -1896,5 +1896,5 @@ ldap.max_links = -1
; End:

<% @directives.sort_by { |key, val| key }.each do |directive, value| -%>
<%= "#{directive}=\"#{value}\"" %>
<%= "#{directive}=#{value}" %>
<% end -%>
2 changes: 1 addition & 1 deletion templates/redhat/php.ini.erb
Original file line number Diff line number Diff line change
Expand Up @@ -1221,5 +1221,5 @@ soap.wsdl_cache_ttl=86400
; End:

<% @directives.sort_by { |key, val| key }.each do |directive, value| -%>
<%= "#{directive}=\"#{value}\"" %>
<%= "#{directive}=#{value}" %>
<% end -%>
2 changes: 1 addition & 1 deletion templates/ubuntu/php.ini.erb
Original file line number Diff line number Diff line change
Expand Up @@ -1853,5 +1853,5 @@ ldap.max_links = -1
; End:

<% @directives.sort_by { |key, val| key }.each do |directive, value| -%>
<%= "#{directive}=\"#{value}\"" %>
<%= "#{directive}=#{value}" %>
<% end -%>
2 changes: 1 addition & 1 deletion templates/windows/php.ini.erb
Original file line number Diff line number Diff line change
Expand Up @@ -1931,5 +1931,5 @@ extension=php_exif.dll
include_path=".;<%= node['php']['conf_dir'].gsub('/', '\\') %>"

<% @directives.each do |directive, value| -%>
<%= "#{directive}=\"#{value}\"" %>
<%= "#{directive}=#{value}" %>
<% end -%>

0 comments on commit 41c07b6

Please sign in to comment.