Skip to content

Commit 5211ddc

Browse files
committed
Merge branch 'PHP-7.4'
* PHP-7.4: Fix INI setting member name
2 parents 6faa08f + 6a9db95 commit 5211ddc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/phpdbg/phpdbg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static PHP_INI_MH(OnUpdateEol)
7070

7171
PHP_INI_BEGIN()
7272
STD_PHP_INI_ENTRY("phpdbg.path", "", PHP_INI_SYSTEM | PHP_INI_PERDIR, OnUpdateString, socket_path, zend_phpdbg_globals, phpdbg_globals)
73-
STD_PHP_INI_ENTRY("phpdbg.eol", "2", PHP_INI_ALL, OnUpdateEol, socket_path, zend_phpdbg_globals, phpdbg_globals)
73+
STD_PHP_INI_ENTRY("phpdbg.eol", "2", PHP_INI_ALL, OnUpdateEol, eol, zend_phpdbg_globals, phpdbg_globals)
7474
PHP_INI_END()
7575

7676
static zend_bool phpdbg_booted = 0;

0 commit comments

Comments
 (0)