Update FAQ and override wrong value of arg_separator.output during check_setup

This commit is contained in:
Frederic Guillot
2015-05-17 10:00:44 -04:00
parent 4d6e5d2e2c
commit 085468346c
2 changed files with 29 additions and 1 deletions

View File

@@ -33,3 +33,8 @@ if (! extension_loaded('mbstring')) {
if (! is_writable('data')) {
die('The directory "data" must be writeable by your web server user');
}
// Fix wrong value for arg_separator.output, used by the function http_build_query()
if (ini_get('arg_separator.output') === '&') {
ini_set('arg_separator.output', '&');
}