diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-06-30 14:10:31 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2018-07-07 12:11:49 +0200 |
commit | b585f043cb0078d01e982ff034d64421a97d8e8f (patch) | |
tree | 95c3d9b6a7da32182ae474ea3c1808886989dccf | |
parent | 956446bdfa200d214b3970275045cb64805fc46e (diff) | |
download | php-git-b585f043cb0078d01e982ff034d64421a97d8e8f.tar.gz |
Add missing INI directives to curl phpinfo
-rw-r--r-- | ext/curl/interface.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/curl/interface.c b/ext/curl/interface.c index c63bad6e8b..ef403b3ec4 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -623,6 +623,8 @@ PHP_MINFO_FUNCTION(curl) } #endif php_info_print_table_end(); + + DISPLAY_INI_ENTRIES(); } /* }}} */ |