diff options
| author | Jani Taskinen <jani@php.net> | 2008-08-03 11:56:45 +0000 |
|---|---|---|
| committer | Jani Taskinen <jani@php.net> | 2008-08-03 11:56:45 +0000 |
| commit | f679eeb6cbb268e66c74e3bd2c6ae91c5ea9bf1b (patch) | |
| tree | 884eb78c1dfd1aae86c9d2d7783563b9f408c77c | |
| parent | 3cd81726a259e46b9e54bf095dd5bbeb8e81ed57 (diff) | |
| download | php-git-f679eeb6cbb268e66c74e3bd2c6ae91c5ea9bf1b.tar.gz | |
- No C++ comments in C files!
| -rw-r--r-- | ext/mbstring/mbstring.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index e1546a466e..9b0aca383e 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -1175,12 +1175,12 @@ static PHP_INI_MH(OnUpdate_mbstring_internal_encoding) if (stage == PHP_INI_STAGE_STARTUP || stage == PHP_INI_STAGE_SHUTDOWN) { return _php_mb_ini_mbstring_internal_encoding_set(new_value, new_value_length TSRMLS_CC); } else { - // the corresponding mbstring globals needs to be set according to the - // ini value in the later stage because it never falls back to the - // default value if 1. no value for mbstring.internal_encoding is given, - // 2. mbstring.language directive is processed in per-dir or runtime - // context and 3. call to the handler for mbstring.language is done - // after mbstring.internal_encoding is handled. + /* the corresponding mbstring globals needs to be set according to the + * ini value in the later stage because it never falls back to the + * default value if 1. no value for mbstring.internal_encoding is given, + * 2. mbstring.language directive is processed in per-dir or runtime + * context and 3. call to the handler for mbstring.language is done + * after mbstring.internal_encoding is handled. */ return SUCCESS; } } |
