]> granicus.if.org Git - php/log
php
8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Mon, 2 Jan 2017 11:59:15 +0000 (11:59 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  news entry for PR #2267
  Fixed #67474 (getElementsByTagNameNS and default namespace)
  Add (failing) testcase for bug #67474

8 years agonews entry for PR #2267
Joe Watkins [Mon, 2 Jan 2017 11:58:57 +0000 (11:58 +0000)]
news entry for PR #2267

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Mon, 2 Jan 2017 11:58:14 +0000 (11:58 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  news entry for PR #2267
  Fixed #67474 (getElementsByTagNameNS and default namespace)
  Add (failing) testcase for bug #67474

8 years agonews entry for PR #2267
Joe Watkins [Mon, 2 Jan 2017 11:57:45 +0000 (11:57 +0000)]
news entry for PR #2267

8 years agoFixed #67474 (getElementsByTagNameNS and default namespace)
Arnout Boks [Mon, 2 Jan 2017 10:47:49 +0000 (11:47 +0100)]
Fixed #67474 (getElementsByTagNameNS and default namespace)

This bug was caused by the fact that dom_get_elements_by_tag_name_ns_raw
uses an empty string to filter on the default namespace (as NULL means
'no filter'), whereas in the node itself the default namespace is
signalled by nodep->ns being null.

8 years agoAdd (failing) testcase for bug #67474
Arnout Boks [Mon, 2 Jan 2017 10:46:58 +0000 (11:46 +0100)]
Add (failing) testcase for bug #67474

8 years agoMerge branch 'PHP-7.0' of git.php.net:/php-src into PHP-7.0
Joe Watkins [Mon, 2 Jan 2017 09:44:02 +0000 (09:44 +0000)]
Merge branch 'PHP-7.0' of git.php.net:/php-src into PHP-7.0

* 'PHP-7.0' of git.php.net:/php-src: (146 commits)
  Flush stderr on win32 in cli_log_message
  Fixed bug #73154
  FIx bug #70213
  Fix dom class can't be inherited by the internal class
  Another try at making concat_003 more reliable
  Fix flaky openssl_pkey_new test
  Make Opcache tests using the cli server more reliable
  Revert "Fix #73530: Unsetting result set may reset other result set"
  define php_ap_map_http_request_error function for older httpd only
  add old versions of httpd support
  Disable AppVeyor fast_finish
  Makes the sapi web server and curl tests more reliable
  Fixes the curl tests to be more reliable in Travis CI
  Interpretation of curl_setopt values for boolean parameters
  Fixes #65689. PDO_Firebrid / exec() does not free allocated statement.
  Fix alpn_ctx leaking in openssl
  Fixed bug #73373 (deflate_add does not verify that output was not truncated)
  Fix IS_UNDEF comparisons in opcache
  Fixed bug #73704 (phpdbg shows the wrong line in files with shebang)
  Increase timing quota for small string concat test
  ...

8 years agoFix nowait.phpt to no longer depend on sleeping
Mitch Hagstrand [Mon, 2 Jan 2017 05:19:14 +0000 (21:19 -0800)]
Fix nowait.phpt to no longer depend on sleeping

In Travis CI the nowait.phpt test sometimes fails because of
the usleep() not being long enough ensure proper
execution order. Instead of depending on sleeping the
test now uses two semaphores to guarantee execution order.

8 years agoMerge branch 'master' of git.php.net:/php-src
Joe Watkins [Mon, 2 Jan 2017 09:42:03 +0000 (09:42 +0000)]
Merge branch 'master' of git.php.net:/php-src

* 'master' of git.php.net:/php-src:
  Switch reflection to use smart_str
  Add smart_str_append_printf
  Make printf_to_smart_str(ing) the primitive printf operation
  Export zend_s(tr)pprintf
  Sync smart_string implementation with smart_str
  Move smart_string to Zend
  Fixed bug #73154
  Flush stderr on win32 in cli_log_message
  Fixed bug #73154

8 years agoMerge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
Joe Watkins [Mon, 2 Jan 2017 09:41:44 +0000 (09:41 +0000)]
Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1

* 'PHP-7.1' of git.php.net:/php-src:
  Flush stderr on win32 in cli_log_message
  Fixed bug #73154

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Mon, 2 Jan 2017 09:41:00 +0000 (09:41 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fix nowait.phpt to no longer depend on sleeping

8 years agoFix nowait.phpt to no longer depend on sleeping
Mitch Hagstrand [Mon, 2 Jan 2017 05:19:14 +0000 (21:19 -0800)]
Fix nowait.phpt to no longer depend on sleeping

In Travis CI the nowait.phpt test sometimes fails because of
the usleep() not being long enough ensure proper
execution order. Instead of depending on sleeping the
test now uses two semaphores to guarantee execution order.

8 years agoSwitch reflection to use smart_str
Nikita Popov [Sun, 18 Dec 2016 21:53:25 +0000 (22:53 +0100)]
Switch reflection to use smart_str

Instead of yet-another-smart-string-implementation.

Expand the smart_str API by:
 * smart_str_extract() which gets a finalized zend_string* from a
   smart_str, including insertion of the zero byte and handling of
   the empty string case. This should be preferred over using
   smart_str_0() in conjunction with str.s.
 * smart_str_get_len() which gets the length of the smart_str with
   handling of the empty string case.

8 years agoAdd smart_str_append_printf
Nikita Popov [Sun, 18 Dec 2016 20:01:56 +0000 (21:01 +0100)]
Add smart_str_append_printf

8 years agoMake printf_to_smart_str(ing) the primitive printf operation
Nikita Popov [Sun, 18 Dec 2016 16:53:27 +0000 (17:53 +0100)]
Make printf_to_smart_str(ing) the primitive printf operation

vs(tr)pprintf is now implemented in Zend on top of
printf_to_smart_str(int), which is provided as a utility function.

This allows us to efficiently printf to the end of a smart string.

8 years agoExport zend_s(tr)pprintf
Nikita Popov [Sun, 18 Dec 2016 16:31:00 +0000 (17:31 +0100)]
Export zend_s(tr)pprintf

It's annoying that in Zend you have to use zend_strpprintf instead
of strpprintf, while in PHP you have to use strpprintf instead of
zend_strpprintf.

Make zend_s(tr)pprintf always available and keep s(tr)pprintf as
macro aliases.

8 years agoSync smart_string implementation with smart_str
Nikita Popov [Sun, 18 Dec 2016 19:41:44 +0000 (20:41 +0100)]
Sync smart_string implementation with smart_str

Switch to using inline functions instead of macros, etc.

8 years agoMove smart_string to Zend
Nikita Popov [Sun, 18 Dec 2016 19:04:38 +0000 (20:04 +0100)]
Move smart_string to Zend

smart_str is already in Zend.

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Sun, 1 Jan 2017 20:13:41 +0000 (21:13 +0100)]
Merge branch 'PHP-7.1'

8 years agoFixed bug #73154
Nikita Popov [Sun, 1 Jan 2017 18:24:41 +0000 (19:24 +0100)]
Fixed bug #73154

The object that is being serialized may be destroyed during the
execution of __sleep(), so operate on a copy instead.

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sun, 1 Jan 2017 20:09:27 +0000 (21:09 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFlush stderr on win32 in cli_log_message
Nikita Popov [Tue, 27 Dec 2016 21:44:46 +0000 (22:44 +0100)]
Flush stderr on win32 in cli_log_message

This allows us to unfork a bunch of tests for Windows.

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sun, 1 Jan 2017 18:25:52 +0000 (19:25 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFixed bug #73154
Nikita Popov [Sun, 1 Jan 2017 18:24:41 +0000 (19:24 +0100)]
Fixed bug #73154

The object that is being serialized may be destroyed during the
execution of __sleep(), so operate on a copy instead.

8 years agofix test
Joe Watkins [Sun, 1 Jan 2017 16:17:03 +0000 (16:17 +0000)]
fix test

8 years agonews entry for PR #2117
Joe Watkins [Sun, 1 Jan 2017 15:48:38 +0000 (15:48 +0000)]
news entry for PR #2117

8 years agoMerge branch 'pull-request/2117'
Joe Watkins [Sun, 1 Jan 2017 15:47:36 +0000 (15:47 +0000)]
Merge branch 'pull-request/2117'

* pull-request/2117:
  Allow to configure php-fpm slow log trace callers limit

8 years agoadd news entry for PR #1414
Joe Watkins [Sun, 1 Jan 2017 14:42:33 +0000 (14:42 +0000)]
add news entry for PR #1414

8 years agonews entry for PR #1414
Joe Watkins [Sun, 1 Jan 2017 14:41:20 +0000 (14:41 +0000)]
news entry for PR #1414

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Sun, 1 Jan 2017 14:40:20 +0000 (14:40 +0000)]
Merge branch 'PHP-7.1'

* Add subject to mail.log

8 years agoMerge branch 'pull-request/1414' into PHP-7.1
Joe Watkins [Sun, 1 Jan 2017 14:39:35 +0000 (14:39 +0000)]
Merge branch 'pull-request/1414' into PHP-7.1

* Add subject to mail.log

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Sun, 1 Jan 2017 13:14:00 +0000 (14:14 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sun, 1 Jan 2017 13:13:29 +0000 (14:13 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoMerge branch 'PHP-5.6' into PHP-7.0
Nikita Popov [Sun, 1 Jan 2017 13:12:26 +0000 (14:12 +0100)]
Merge branch 'PHP-5.6' into PHP-7.0

8 years agoFIx bug #70213
Nikita Popov [Sun, 1 Jan 2017 13:10:49 +0000 (14:10 +0100)]
FIx bug #70213

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Sun, 1 Jan 2017 11:20:52 +0000 (12:20 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sun, 1 Jan 2017 11:20:46 +0000 (12:20 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFix dom class can't be inherited by the internal class
dreamszhu [Sun, 1 Jan 2017 09:10:28 +0000 (17:10 +0800)]
Fix dom class can't be inherited by the internal class

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Sun, 1 Jan 2017 11:17:01 +0000 (12:17 +0100)]
Merge branch 'PHP-7.1'

8 years agoFix year dependent test
Nikita Popov [Sun, 1 Jan 2017 11:15:52 +0000 (12:15 +0100)]
Fix year dependent test

8 years agoRevert "add news entry for PR #2263"
Joe Watkins [Sun, 1 Jan 2017 06:53:44 +0000 (06:53 +0000)]
Revert "add news entry for PR #2263"

This reverts commit a9aefe5b9bed3cf5236d89140a8d71cceafe683e.

8 years agoRevert "Merge branch 'PHP-7.1'"
Joe Watkins [Sun, 1 Jan 2017 06:53:29 +0000 (06:53 +0000)]
Revert "Merge branch 'PHP-7.1'"

This reverts commit 7eac2fdf53cda5f3bd34ae64eecbb8b21a6f484b, reversing
changes made to 15b80f105cdb9a9210edd9dff7109f0951c843f4.

8 years agoRevert "news entry for PR #2263"
Joe Watkins [Sun, 1 Jan 2017 06:52:59 +0000 (06:52 +0000)]
Revert "news entry for PR #2263"

This reverts commit 299e02c82a1d4626e209f978001bba6d66885c05.

8 years agoRevert "Fix dom class can't be inherited by the internal class"
Joe Watkins [Sun, 1 Jan 2017 06:52:41 +0000 (06:52 +0000)]
Revert "Fix dom class can't be inherited by the internal class"

This reverts commit 705f60e481b891d009ec9bb4c88390545ff95880.

8 years agoadd news entry for PR #2263
Joe Watkins [Sun, 1 Jan 2017 06:50:37 +0000 (06:50 +0000)]
add news entry for PR #2263

8 years agonews entry for PR #2263
Joe Watkins [Sun, 1 Jan 2017 06:49:42 +0000 (06:49 +0000)]
news entry for PR #2263

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Sun, 1 Jan 2017 06:48:24 +0000 (06:48 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fix dom class can't be inherited by the internal class

8 years agoFix dom class can't be inherited by the internal class
dreamszhu [Sun, 1 Jan 2017 01:45:09 +0000 (09:45 +0800)]
Fix dom class can't be inherited by the internal class

8 years agoMerge branch 'pull-request/2261'
Joe Watkins [Sun, 1 Jan 2017 06:44:14 +0000 (06:44 +0000)]
Merge branch 'pull-request/2261'

* pull-request/2261:
  Add PHPAPI php_session_flush and php_session_destroy

8 years agoAdd PHPAPI php_session_flush and php_session_destroy
dreamszhu [Sat, 31 Dec 2016 23:30:22 +0000 (07:30 +0800)]
Add PHPAPI php_session_flush and php_session_destroy

8 years agoUse new param API in pdo_sqlite
Sara Golemon [Sat, 31 Dec 2016 16:59:49 +0000 (08:59 -0800)]
Use new param API in pdo_sqlite

8 years agoUse new param API in tokenizer
Sara Golemon [Sat, 31 Dec 2016 16:56:15 +0000 (08:56 -0800)]
Use new param API in tokenizer

8 years agoUse new param API in PDO
Sara Golemon [Sat, 31 Dec 2016 16:45:54 +0000 (08:45 -0800)]
Use new param API in PDO

8 years agoUse new param API in libxml
Sara Golemon [Sat, 31 Dec 2016 16:38:14 +0000 (08:38 -0800)]
Use new param API in libxml

8 years agoUse new param API in json
Sara Golemon [Sat, 31 Dec 2016 16:35:07 +0000 (08:35 -0800)]
Use new param API in json

8 years agoMerge branch 'master' of git.php.net:/php-src
Joe Watkins [Sat, 31 Dec 2016 13:55:17 +0000 (13:55 +0000)]
Merge branch 'master' of git.php.net:/php-src

* 'master' of git.php.net:/php-src:
  Fix bug #73847

8 years agoMerge branch 'pull-request/2260'
Joe Watkins [Sat, 31 Dec 2016 13:54:54 +0000 (13:54 +0000)]
Merge branch 'pull-request/2260'

* pull-request/2260:
  Add PHPAPI for session class entry and related entries

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Sat, 31 Dec 2016 12:34:09 +0000 (13:34 +0100)]
Merge branch 'PHP-7.1'

8 years agoFix bug #73847
Nikita Popov [Sat, 31 Dec 2016 12:33:21 +0000 (13:33 +0100)]
Fix bug #73847

8 years agoAdd PHPAPI for session class entry
dreamszhu [Sat, 31 Dec 2016 10:03:58 +0000 (18:03 +0800)]
Add PHPAPI for session class entry

8 years agoMerge branch 'pull-request/2264'
Joe Watkins [Sat, 31 Dec 2016 08:35:50 +0000 (08:35 +0000)]
Merge branch 'pull-request/2264'

* pull-request/2264:
  Fix header_remove function, the name parameter is optional

8 years agoFix header_remove function, the name parameter is optional
Mitch Hagstrand [Sat, 31 Dec 2016 03:13:46 +0000 (19:13 -0800)]
Fix header_remove function, the name parameter is optional

8 years agoUse new param API in standard
Sara Golemon [Sat, 31 Dec 2016 02:03:33 +0000 (18:03 -0800)]
Use new param API in standard

8 years agoUse new param API in standard/file
Sara Golemon [Sat, 31 Dec 2016 01:52:31 +0000 (17:52 -0800)]
Use new param API in standard/file

8 years agoUse new param API in standard
Sara Golemon [Sat, 31 Dec 2016 01:09:35 +0000 (17:09 -0800)]
Use new param API in standard

8 years agoUse new param API in standard/string
Sara Golemon [Sat, 31 Dec 2016 00:40:45 +0000 (16:40 -0800)]
Use new param API in standard/string

8 years agoUse new param API in standard/basic_functions
Sara Golemon [Sat, 31 Dec 2016 00:06:20 +0000 (16:06 -0800)]
Use new param API in standard/basic_functions

8 years agoUse new param API in standard
Sara Golemon [Fri, 30 Dec 2016 21:21:11 +0000 (13:21 -0800)]
Use new param API in standard

8 years agoUse new param API in standard
Sara Golemon [Fri, 30 Dec 2016 21:05:51 +0000 (13:05 -0800)]
Use new param API in standard

8 years agoUse new param API in standard/math
Sara Golemon [Fri, 30 Dec 2016 21:02:59 +0000 (13:02 -0800)]
Use new param API in standard/math

8 years agoUse new param API in standard
Sara Golemon [Fri, 30 Dec 2016 20:32:48 +0000 (12:32 -0800)]
Use new param API in standard

8 years agoMerge branch 'PHP-7.1'
Adam Harvey [Fri, 30 Dec 2016 19:42:12 +0000 (11:42 -0800)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Document the changes to lexical scoping in 7.1.

8 years agoDocument the changes to lexical scoping in 7.1.
Adam Harvey [Fri, 30 Dec 2016 19:39:45 +0000 (11:39 -0800)]
Document the changes to lexical scoping in 7.1.

Fixes bug #73844 (Cannot use lexical variable $variable as a parameter
name inside array_walk()).

8 years agoUse new param API in standard/array
Sara Golemon [Fri, 30 Dec 2016 18:32:03 +0000 (10:32 -0800)]
Use new param API in standard/array

8 years agoUse new param API in standard
Sara Golemon [Fri, 30 Dec 2016 16:54:55 +0000 (08:54 -0800)]
Use new param API in standard

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Fri, 30 Dec 2016 13:18:31 +0000 (14:18 +0100)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Update UPGRADING wrt. bug #72785

8 years agoUpdate UPGRADING wrt. bug #72785
Christoph M. Becker [Fri, 30 Dec 2016 13:17:38 +0000 (14:17 +0100)]
Update UPGRADING wrt. bug #72785

8 years agoMerge branch 'PHP-7.0' of https://git.php.net/repository/php-src into PHP-7.0
Christoph M. Becker [Fri, 30 Dec 2016 12:56:34 +0000 (13:56 +0100)]
Merge branch 'PHP-7.0' of https://git.php.net/repository/php-src into PHP-7.0

* 'PHP-7.0' of https://git.php.net/repository/php-src:
  Another try at making concat_003 more reliable
  Fix flaky openssl_pkey_new test
  Make Opcache tests using the cli server more reliable

8 years agoUse new param API in standard/streamsfuncs
Sara Golemon [Fri, 30 Dec 2016 05:27:08 +0000 (21:27 -0800)]
Use new param API in standard/streamsfuncs

8 years agoUse new params API for throwable constructors in date
Sara Golemon [Wed, 28 Dec 2016 19:18:46 +0000 (11:18 -0800)]
Use new params API for throwable constructors in date

8 years agoSupport ZEND_PARSE_PARAMS_THROW in new ZPP API
Sara Golemon [Wed, 28 Dec 2016 19:14:43 +0000 (11:14 -0800)]
Support ZEND_PARSE_PARAMS_THROW in new ZPP API

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Thu, 29 Dec 2016 21:07:03 +0000 (22:07 +0100)]
Merge branch 'PHP-7.1'

8 years agoDon't check for precise length in ecc.phpt
Nikita Popov [Thu, 29 Dec 2016 21:05:38 +0000 (22:05 +0100)]
Don't check for precise length in ecc.phpt

Again, this can be off by one.

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Thu, 29 Dec 2016 20:41:28 +0000 (21:41 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Thu, 29 Dec 2016 20:41:21 +0000 (21:41 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoAnother try at making concat_003 more reliable
Nikita Popov [Thu, 29 Dec 2016 20:39:40 +0000 (21:39 +0100)]
Another try at making concat_003 more reliable

Use array_fill() for the array population loop -- this isn't the
part that is being tested and on PHP 7.0 w/o opcache this duplicates
the inner array a lot.

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Thu, 29 Dec 2016 20:18:58 +0000 (21:18 +0100)]
Merge branch 'PHP-7.1'

8 years agoFixed bug #73783
David Walker [Mon, 19 Dec 2016 21:29:18 +0000 (14:29 -0700)]
Fixed bug #73783

Bug #73783 raises an issue with signal handling when using SIG_IGN.
With PHP7.1 ZEND_SIGNALS is defaulted to on, which will for all
signals set the handler as zend_signal_handler_defer.  This is
problematic for syscalls like sleep(), which will only return when the
requisite number of seconds have elapsed, or, a non-ignored signal is
raised.  In this case we want to SIG_IGN SIGCHLD, however, SIG_IGN is
only stored in the SIGG(handlers) array, and the actual system level
handler is defined.  This prevents proper signal ignoring when requeted.

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Thu, 29 Dec 2016 20:00:34 +0000 (21:00 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Thu, 29 Dec 2016 20:00:14 +0000 (21:00 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFix flaky openssl_pkey_new test
Nikita Popov [Thu, 29 Dec 2016 19:59:28 +0000 (20:59 +0100)]
Fix flaky openssl_pkey_new test

Public key size may vary by one bit... switch to using %d for
key sizes.

8 years agoMake Opcache tests using the cli server more reliable
Mitch Hagstrand [Thu, 29 Dec 2016 03:29:36 +0000 (19:29 -0800)]
Make Opcache tests using the cli server more reliable

Same fix already applied to ext/curl/tests/server.inc
and sapi/cli/tests/php_cli_server.inc

1. Increases the amount of time for the PHP built-in server to accept a connection
2. Outputs an error if the PHP built-in server fails

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Thu, 29 Dec 2016 12:58:14 +0000 (13:58 +0100)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Revert "Fix #73530: Unsetting result set may reset other result set"

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Christoph M. Becker [Thu, 29 Dec 2016 12:49:29 +0000 (13:49 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Revert "Fix #73530: Unsetting result set may reset other result set"

8 years agoMerge branch 'PHP-5.6' into PHP-7.0
Christoph M. Becker [Thu, 29 Dec 2016 12:31:18 +0000 (13:31 +0100)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  Revert "Fix #73530: Unsetting result set may reset other result set"

# Conflicts:
# ext/sqlite3/sqlite3.c

8 years agoRevert "Fix #73530: Unsetting result set may reset other result set"
Christoph M. Becker [Thu, 29 Dec 2016 11:41:39 +0000 (12:41 +0100)]
Revert "Fix #73530: Unsetting result set may reset other result set"

This reverts commit eb570294a289b45d0dd38efc71065d6b0d314c4b.

That commit caused a regression, so it's probably best to revert it, and
to tackle the issue for the next minor release.

8 years agoMerge branch 'PHP-7.1'
Xinchen Hui [Thu, 29 Dec 2016 07:56:38 +0000 (15:56 +0800)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  define php_ap_map_http_request_error function for older httpd only
  add old versions of httpd support
  typo fixed
  bug fixed #61471 in apache2handler

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Thu, 29 Dec 2016 07:56:26 +0000 (15:56 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  define php_ap_map_http_request_error function for older httpd only
  add old versions of httpd support
  typo fixed
  bug fixed #61471 in apache2handler

8 years agoMerge branch 'bugfix_timeout_61471' of https://github.com/axot/php-src into PHP-7.0
Xinchen Hui [Thu, 29 Dec 2016 07:46:47 +0000 (15:46 +0800)]
Merge branch 'bugfix_timeout_61471' of https://github.com/axot/php-src into PHP-7.0

* 'bugfix_timeout_61471' of https://github.com/axot/php-src:
  define php_ap_map_http_request_error function for older httpd only
  add old versions of httpd support
  typo fixed
  bug fixed #61471 in apache2handler

8 years agodefine php_ap_map_http_request_error function for older httpd only
Zheng SHAO [Thu, 29 Dec 2016 04:00:31 +0000 (13:00 +0900)]
define php_ap_map_http_request_error function for older httpd only