c08e34dea3
git-svn-id: http://piwigo.org/svn/trunk@29904 68402e56-0260-453c-a942-63ccdbb3a9ee
9 lines
No EOL
222 B
PHP
9 lines
No EOL
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);
|
|
}
|
|
}
|
|
?>
|