mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
9 lines
222 B
PHP
9 lines
222 B
PHP
|
<?php
|
||
|
if (!function_exists('gzopen') && function_exists('gzopen64'))
|
||
|
{
|
||
|
function gzopen(string $filename , string $mode, int $use_include_path = null)
|
||
|
{
|
||
|
return gzopen64($filename, $mode, $use_include_path);
|
||
|
}
|
||
|
}
|
||
|
?>
|