Created
October 30, 2009 01:52
-
-
Save bellbind/222020 to your computer and use it in GitHub Desktop.
[php][snippet]workaround for ubuntu kermic buggy release version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// workaround no "gzopen" problem on ubuntu karmic's php5 5.2.10.dfsg.1-2ubuntu6 | |
if (!function_exists("gzopen") && function_exists("gzopen64")) { | |
function gzopen($file, $mode) { | |
return gzopen64($file, $mode); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment