diff options
author | Marcus Boerger <helly@php.net> | 2002-10-15 00:35:05 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-10-15 00:35:05 +0000 |
commit | d396d9c7ce7d8170b933a3afcb0c28c818e50c29 (patch) | |
tree | 22b357f6277cb6d7fdc8142bfdbecd313973d8be /ext/exif | |
parent | f0664706c9edbe34817ba7da83e18f6f54ddd399 (diff) | |
download | php-git-d396d9c7ce7d8170b933a3afcb0c28c818e50c29.tar.gz |
remove ob_end_clean() and instead use ini section
#Derick you're right this was no good idea. I just left it over after testing
#the test.
Diffstat (limited to 'ext/exif')
-rw-r--r-- | ext/exif/tests/002.phpt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/exif/tests/002.phpt b/ext/exif/tests/002.phpt index d52ba67e53..6bc0bee463 100644 --- a/ext/exif/tests/002.phpt +++ b/ext/exif/tests/002.phpt @@ -4,6 +4,8 @@ Check for exif_thumbnail <?php if (!extension_loaded("exif")) print "skip";?> --INI-- magic_quotes_runtime=0 +output_handler = +zlib.output_compression = Off --FILE-- <?php /* @@ -11,7 +13,6 @@ magic_quotes_runtime=0 test2.jpg is the same image but contains Exif/Comment information and a copy of test1.jpg as a thumbnail. */ -if (function_exists("ob_end_clean")) ob_end_clean(); $infile= './ext/exif/tests/test1.jpg'; $fp = fopen($infile,'rb'); $image = fread($fp,filesize($infile)); |