diff options
author | Antony Dovgal <tony2001@php.net> | 2005-10-20 16:47:18 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2005-10-20 16:47:18 +0000 |
commit | 5fdeb391f358bf8038441613b02bc73fc68875ab (patch) | |
tree | f2251e32ea9a51a2002fa265cc06a22bc710c165 /ext/reflection/php_reflection.c | |
parent | b0c0b79136b214219c0f50a5ff0ac024d7182632 (diff) | |
download | php-git-5fdeb391f358bf8038441613b02bc73fc68875ab.tar.gz |
MFH: fix copy/paste typo
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 921d9bbe64..05df2d6fd6 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -753,7 +753,7 @@ static int _extension_ini_string(zend_ini_entry *ini_entry, int num_args, va_lis } } - string_printf(str, "> ]\n", indent, ini_entry->name); + string_printf(str, "> ]\n"); string_printf(str, " %s Current = '%s'\n", indent, ini_entry->value ? ini_entry->value : ""); if (ini_entry->modified) { string_printf(str, " %s Default = '%s'\n", indent, ini_entry->orig_value ? ini_entry->orig_value : ""); |