From 992991fe1b84b265fb000c76c84bb1809c4db133 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Tue, 14 Sep 2010 10:36:21 +0000 Subject: [PATCH] - fix #48831 php -i has different output to php --ini --- NEWS | 2 ++ sapi/cli/php_cli.c | 1 + 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 7923f29648..28fa9a9e5d 100644 --- a/NEWS +++ b/NEWS @@ -87,6 +87,8 @@ - Fixed bug #50524 (proc_open on Windows does not respect cwd as it does on other platforms). (Pierre) - Fixed bug #49215 (make fails on glob_wrapper). (Felipe) +- Fixed bug #48831 (php -i has different output to php --ini). (Richard, + Pierre) 22 Jul 2010, PHP 5.3.3 - Upgraded bundled sqlite to version 3.6.23.1. (Ilia) diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 635445e92f..d263f7893b 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -100,6 +100,7 @@ #endif PHPAPI extern char *php_ini_opened_path; +PHPAPI extern char *php_ini_scanned_path; PHPAPI extern char *php_ini_scanned_files; #ifndef O_BINARY -- 2.40.0