Skip to content
Snippets Groups Projects
Commit b603fd2e authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-inventories/zehnder#1886 Optionally allow configuration of...

ansible-inventories/zehnder#1886 Optionally allow configuration of mbstring.http_input and mbstring.http_output
parent db742ae6
No related branches found
No related tags found
No related merge requests found
......@@ -1738,11 +1738,17 @@ zend.assertions = {{ php_zend_assertions }}
; http input encoding.
; http://php.net/mbstring.http-input
;mbstring.http_input = UTF-8
{% if php_mbstring_http_input is defined %}
mbstring.http_input = {{ php_mbstring_http_input }}
{% endif %}
; http output encoding. mb_output_handler must be
; registered as output buffer to function
; http://php.net/mbstring.http-output
;mbstring.http_output = pass
{% if php_mbstring_http_output is defined %}
mbstring.http_output = {{ php_mbstring_http_output }}
{% endif %}
; enable automatic encoding translation according to
; mbstring.internal_encoding setting. Input chars are
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment