Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Correct two zlib tests to use a string, not a const
This commit is contained in:
Stanislav Malyshev 2014-11-23 17:12:52 -08:00
commit 34c1ba5685
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
Test function gzfile() by substituting argument 1 with float values. Test function gzfile() by substituting argument 1 with float values.
--SKIPIF-- --SKIPIF--
<?php <?php
if (!extension_loaded(zlib)) die ('skip zlib extension not available in this build'); if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');
?> ?>
--FILE-- --FILE--
<?php <?php

View File

@ -2,7 +2,7 @@
Test function readgzfile() by substituting argument 1 with float values. Test function readgzfile() by substituting argument 1 with float values.
--SKIPIF-- --SKIPIF--
<?php <?php
if (!extension_loaded(zlib)) die ('skip zlib extension not available in this build'); if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');
?> ?>
--FILE-- --FILE--
<?php <?php