ID: 30318 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Livedocs problem PHP Version: Irrelevant New Comment:
Here's the patch formatted correctly: http://www.powertrip.co.za/livedocs/viewpatch.php?patch=7 Previous Comments: ------------------------------------------------------------------------ [2004-10-04 13:51:08] [EMAIL PROTECTED] No bug here, this should go into the README instead. ------------------------------------------------------------------------ [2004-10-04 13:45:44] [EMAIL PROTECTED] Description: ------------ This patch adds a check to ensure the bzip2 compression stream is enabled before using it. Actual result: -------------- --- livedocs\mk_notes.1.4.php Thu Aug 19 06:56:57 2004 +++ livedocs\mk_notes.php Wed Sep 08 09:35:08 2004 @@ -21,6 +21,14 @@ // // $Id: mk_notes.php,v 1.4 2004/08/18 20:56:57 iliaa Exp $ +// Check the compress.bzip2 stream is enabled +if (!in_array('compress.bzip2', stream_get_wrappers())) { + echo "Warning: Unable to build user notes: The bzip2 stream is not enabled.\n"; + echo "You must build with --with-bz2.\n"; + echo "####################\n\n"; + return false; +} + $create = << ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30318&edit=1