From 085468346c49e059ab7b7fc6d21fa2dda56f2fd9 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 17 May 2015 10:00:44 -0400 Subject: Update FAQ and override wrong value of arg_separator.output during check_setup --- app/check_setup.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app/check_setup.php') diff --git a/app/check_setup.php b/app/check_setup.php index afb08f6a..065b8e10 100644 --- a/app/check_setup.php +++ b/app/check_setup.php @@ -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', '&'); +} -- cgit v1.2.3