Advertisement
Guest User

Untitled

a guest
Dec 8th, 2011
474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. // workaround no "gzopen" problem on ubuntu karmic's php5 5.2.10.dfsg.1-2ubuntu6
  3. if (!function_exists("gzopen") && function_exists("gzopen64")) {
  4. function gzopen($file, $mode) {
  5. return gzopen64($file, $mode);
  6. }
  7. }
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement