We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8b8341 commit 31e21f7Copy full SHA for 31e21f7
ext/intl/php_intl.c
@@ -286,7 +286,7 @@ PHP_RSHUTDOWN_FUNCTION( intl )
286
/* {{{ PHP_MINFO_FUNCTION */
287
PHP_MINFO_FUNCTION( intl )
288
{
289
-#ifndef UCONFIG_NO_FORMATTING
+#if !UCONFIG_NO_FORMATTING
290
UErrorCode status = U_ZERO_ERROR;
291
const char *tzdata_ver = NULL;
292
#endif
@@ -297,7 +297,7 @@ PHP_MINFO_FUNCTION( intl )
297
#ifdef U_ICU_DATA_VERSION
298
php_info_print_table_row( 2, "ICU Data version", U_ICU_DATA_VERSION );
299
300
301
tzdata_ver = ucal_getTZDataVersion(&status);
302
if (U_ZERO_ERROR == status) {
303
php_info_print_table_row( 2, "ICU TZData version", tzdata_ver);
0 commit comments