Skip to content
Snippets Groups Projects
Commit 32f65c29 authored by Falko Timme's avatar Falko Timme
Browse files

Custom php.ini settings: PHP-FPM might complain about invalid boolean value if...

Custom php.ini settings: PHP-FPM might complain about invalid boolean value if you use 0 instead of off, false, or no.
parent ba5cfd1c
No related branches found
No related tags found
No related merge requests found
......@@ -1108,6 +1108,8 @@ class nginx_plugin {
case 'off':
case '1':
case '0':
// PHP-FPM might complain about invalid boolean value if you use 0
$value = 'off';
case 'true':
case 'false':
case 'yes':
......
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