Skip to content

Commit

Permalink
Fix bug #52826 (phpinfo is incorrect for bzip2 stream wrapper).
Browse files Browse the repository at this point in the history
  • Loading branch information
LawnGnome committed Sep 13, 2010
1 parent f25cbae commit a53f43d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/bz2/bz2.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ static PHP_MINFO_FUNCTION(bz2)
{
php_info_print_table_start();
php_info_print_table_row(2, "BZip2 Support", "Enabled");
php_info_print_table_row(2, "Stream Wrapper support", "compress.bz2://");
php_info_print_table_row(2, "Stream Wrapper support", "compress.bzip2://");
php_info_print_table_row(2, "Stream Filter support", "bzip2.decompress, bzip2.compress");
php_info_print_table_row(2, "BZip2 Version", (char *) BZ2_bzlibVersion());
php_info_print_table_end();
Expand Down

0 comments on commit a53f43d

Please sign in to comment.