ID: 50129 Updated by: [email protected] Reported By: RQuadling at GMail dot com -Status: Open +Status: Closed Bug Type: PHAR related Operating System: Irrelevant PHP Version: 5.3SVN-2009-11-09 (SVN) New Comment:
This bug has been fixed in SVN. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2009-11-09 17:21:16] [email protected] Automatic comment from SVN on behalf of rasmus Revision: http://svn.php.net/viewvc/?view=revision&revision=290435 Log: Fix bug #50129 ------------------------------------------------------------------------ [2009-11-09 17:12:34] RQuadling at GMail dot com Description: ------------ Truly minor. phpinfo() output for phar says "CVS revision" rather than "SVN revision". Index: phar.c =================================================================== --- phar.c (revision 290197) +++ phar.c (working copy) @@ -3665,7 +3665,7 @@ 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"); ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=50129&edit=1
