From: Antony Dovgal Date: Sat, 23 Sep 2006 12:22:07 +0000 (+0000) Subject: one more try to fix ZTS build X-Git-Tag: RELEASE_1_0_0RC1~1573 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cad50f1dd20126be9b5d7ba3946cc4ecb7699988;p=php one more try to fix ZTS build --- diff --git a/ext/standard/string.c b/ext/standard/string.c index c338977fbe..13637328c5 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -3418,7 +3418,7 @@ PHP_FUNCTION(quotemeta) UChar cp; zend_uchar type; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_DC, "t", &old, &old_len, &type) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "t", &old, &old_len, &type) == FAILURE) { return; } @@ -5546,7 +5546,7 @@ PHP_FUNCTION(setlocale) } if (UG(unicode)) { - php_error_docref(NULL TSRMLS_DC, E_STRICT, "deprecated in Unicode mode, please use ICU locale functions"); + php_error_docref(NULL TSRMLS_CC, E_STRICT, "deprecated in Unicode mode, please use ICU locale functions"); } #ifdef HAVE_SETLOCALE @@ -6358,7 +6358,7 @@ PHP_FUNCTION(count_chars) RETURN_FALSE; } if (UG(unicode) && mode != 1) { - php_error_docref(NULL TSRMLS_DC, E_WARNING, "Only mode=1 is supported with Unicode strings"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only mode=1 is supported with Unicode strings"); } } @@ -6483,7 +6483,7 @@ PHP_FUNCTION(localeconv) } if (UG(unicode)) { - php_error_docref(NULL TSRMLS_DC, E_STRICT, "deprecated in Unicode mode, please use ICU locale functions"); + php_error_docref(NULL TSRMLS_CC, E_STRICT, "deprecated in Unicode mode, please use ICU locale functions"); } MAKE_STD_ZVAL(grouping);