mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-31 03:52:01 +08:00
Bugfix: ini_get() expects exactly 1 parameter, 2 given
This commit is contained in:
parent
f4319f4319
commit
a5a15c8e11
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@
|
|||
}
|
||||
|
||||
// See https://github.com/kjdev/php-ext-brotli
|
||||
if (defined('USE_GZIP') && !ini_get('zlib.output_compression', 0) && !ini_get('brotli.output_compression', 0)) {
|
||||
if (defined('USE_GZIP') && !ini_get('zlib.output_compression') && !ini_get('brotli.output_compression')) {
|
||||
ob_start('ob_gzhandler');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue