diff options
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r-- | ext/standard/basic_functions.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index edc7817c91..7fcdba87cc 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -377,6 +377,7 @@ function_entry basic_functions[] = { PHP_FE(escapeshellarg, NULL) PHP_FE(passthru, second_arg_force_ref) PHP_FE(shell_exec, NULL) + PHP_FE(proc_open, third_arg_force_ref) PHP_FE(rand, NULL) PHP_FE(srand, NULL) @@ -977,6 +978,7 @@ PHP_MINIT_FUNCTION(basic) PHP_MINIT(array) (INIT_FUNC_ARGS_PASSTHRU); PHP_MINIT(assert) (INIT_FUNC_ARGS_PASSTHRU); PHP_MINIT(url_scanner_ex) (INIT_FUNC_ARGS_PASSTHRU); + PHP_MINIT(proc_open) (INIT_FUNC_ARGS_PASSTHRU); if (PG(allow_url_fopen)) { |