summaryrefslogtreecommitdiff
path: root/ext/bz2
diff options
context:
space:
mode:
authorAdam Harvey <aharvey@php.net>2010-09-13 07:41:39 +0000
committerAdam Harvey <aharvey@php.net>2010-09-13 07:41:39 +0000
commita53f43d7b5f38252d2cf8c2ff9ade00d19cd8896 (patch)
tree6464d00d1d0cec06b38bb03900ec59e0c71f1687 /ext/bz2
parentf25cbae9b143d6693fbd6ee6593414fccf4429cf (diff)
downloadphp-git-a53f43d7b5f38252d2cf8c2ff9ade00d19cd8896.tar.gz
Fix bug #52826 (phpinfo is incorrect for bzip2 stream wrapper).
Diffstat (limited to 'ext/bz2')
-rw-r--r--ext/bz2/bz2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bz2/bz2.c b/ext/bz2/bz2.c
index 3d12f6cdec..82de762502 100644
--- a/ext/bz2/bz2.c
+++ b/ext/bz2/bz2.c
@@ -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();