Skip to content

Commit

Permalink
Merge branch 'PHP-7.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Jun 17, 2019
2 parents ca8f348 + ad1b62f commit 80e4a6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/pcre/php_pcre.c
Original file line number Diff line number Diff line change
Expand Up @@ -2674,7 +2674,7 @@ static PHP_FUNCTION(preg_quote)
ZEND_PARSE_PARAMETERS_START(1, 2)
Z_PARAM_STR(str)
Z_PARAM_OPTIONAL
Z_PARAM_STR(delim)
Z_PARAM_STR_EX(delim, 1, 0)
ZEND_PARSE_PARAMETERS_END();

/* Nothing to do if we got an empty string */
Expand Down
2 changes: 1 addition & 1 deletion sapi/fpm/www.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pm.max_children = 5

; The number of child processes created on startup.
; Note: Used only when pm is set to 'dynamic'
; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
; Default Value: (min_spare_servers + max_spare_servers) / 2
pm.start_servers = 2

; The desired minimum number of idle server processes.
Expand Down

0 comments on commit 80e4a6a

Please sign in to comment.