We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35c1bb2 + 31e21f7 commit f5dc2c3Copy full SHA for f5dc2c3
ext/intl/php_intl.c
@@ -251,7 +251,7 @@ PHP_RSHUTDOWN_FUNCTION( intl )
251
/* {{{ PHP_MINFO_FUNCTION */
252
PHP_MINFO_FUNCTION( intl )
253
{
254
-#ifndef UCONFIG_NO_FORMATTING
+#if !UCONFIG_NO_FORMATTING
255
UErrorCode status = U_ZERO_ERROR;
256
const char *tzdata_ver = NULL;
257
#endif
@@ -262,7 +262,7 @@ PHP_MINFO_FUNCTION( intl )
262
#ifdef U_ICU_DATA_VERSION
263
php_info_print_table_row( 2, "ICU Data version", U_ICU_DATA_VERSION );
264
265
266
tzdata_ver = ucal_getTZDataVersion(&status);
267
if (U_ZERO_ERROR == status) {
268
php_info_print_table_row( 2, "ICU TZData version", tzdata_ver);
0 commit comments