Files
Piwigo/include/php_compat/gzopen.php
plegall 2a839be3b6 merge r29904 from trunk to branch 2.7
bug 3078: avoid zlib issue on Ubuntu 14.04 (PHP 5.5) and maybe other systems


git-svn-id: http://piwigo.org/svn/branches/2.7@29905 68402e56-0260-453c-a942-63ccdbb3a9ee
2014-10-06 10:46:06 +00:00

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);
}
}
?>