From: Rasmus Lerdorf Date: Mon, 9 Nov 2009 17:21:15 +0000 (+0000) Subject: Fix bug #50129 X-Git-Tag: php-5.4.0alpha1~191^2~2413 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c06ac0ac8e5555506511dce2460c1cd6d262ccb5;p=php Fix bug #50129 --- diff --git a/ext/phar/phar.c b/ext/phar/phar.c index 87fedfcd7d..6dee760a9c 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -3665,7 +3665,7 @@ PHP_MINFO_FUNCTION(phar) /* {{{ */ php_info_print_table_header(2, "Phar: PHP Archive support", "enabled"); php_info_print_table_row(2, "Phar EXT version", PHP_PHAR_VERSION); php_info_print_table_row(2, "Phar API version", PHP_PHAR_API_VERSION); - php_info_print_table_row(2, "CVS revision", "$Revision$"); + php_info_print_table_row(2, "SVN revision", "$Revision$"); php_info_print_table_row(2, "Phar-based phar archives", "enabled"); php_info_print_table_row(2, "Tar-based phar archives", "enabled"); php_info_print_table_row(2, "ZIP-based phar archives", "enabled");