File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 103
103
#include <ext/standard/info.h>
104
104
105
105
#include "php_ini.h"
106
- #define INTL_MODULE_VERSION PHP_INTL_VERSION
107
106
108
107
/*
109
108
* locale_get_default has a conflict since ICU also has
@@ -879,7 +878,7 @@ zend_module_entry intl_module_entry = {
879
878
PHP_RINIT ( intl ),
880
879
PHP_RSHUTDOWN ( intl ),
881
880
PHP_MINFO ( intl ),
882
- INTL_MODULE_VERSION ,
881
+ PHP_INTL_VERSION ,
883
882
PHP_MODULE_GLOBALS (intl ), /* globals descriptor */
884
883
PHP_GINIT (intl ), /* globals ctor */
885
884
NULL , /* globals dtor */
@@ -1061,7 +1060,6 @@ PHP_MINFO_FUNCTION( intl )
1061
1060
1062
1061
php_info_print_table_start ();
1063
1062
php_info_print_table_header ( 2 , "Internationalization support" , "enabled" );
1064
- php_info_print_table_row ( 2 , "version" , INTL_MODULE_VERSION );
1065
1063
php_info_print_table_row ( 2 , "ICU version" , U_ICU_VERSION );
1066
1064
#ifdef U_ICU_DATA_VERSION
1067
1065
php_info_print_table_row ( 2 , "ICU Data version" , U_ICU_DATA_VERSION );
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ PHP_MINFO_FUNCTION(intl);
71
71
72
72
const char * intl_locale_get_default ( void );
73
73
74
- #define PHP_INTL_VERSION "1.1.0"
74
+ #define PHP_INTL_VERSION PHP_VERSION
75
75
76
76
#endif /* PHP_INTL_H */
77
77
You can’t perform that action at this time.
0 commit comments