From 88ca8e7279ca324ae91e2cb3c81e4f7a9ab106d2 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Wed, 31 Dec 2008 14:36:27 +0000 Subject: [PATCH] - Use Revision instead of Id tag for version --- ext/reflection/php_reflection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 771407f194..d130e02af8 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -5262,7 +5262,7 @@ PHP_MINFO_FUNCTION(reflection) /* {{{ */ php_info_print_table_start(); php_info_print_table_header(2, "Reflection", "enabled"); - php_info_print_table_row(2, "Version", "$Id$"); + php_info_print_table_row(2, "Version", "$Revision$"); php_info_print_table_end(); } /* }}} */ @@ -5276,7 +5276,7 @@ zend_module_entry reflection_module_entry = { /* {{{ */ NULL, NULL, PHP_MINFO(reflection), - "0.1", + "$Revision$", STANDARD_MODULE_PROPERTIES }; /* }}} */ -- 2.50.1