]> granicus.if.org Git - php/log
php
8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Thu, 12 Jan 2017 09:10:39 +0000 (09:10 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #72680 gdbinit print_cvs not prepared for PHP 7

8 years agoFixed bug #72680 gdbinit print_cvs not prepared for PHP 7
Mitch Hagstrand [Thu, 12 Jan 2017 04:57:33 +0000 (20:57 -0800)]
Fixed bug #72680 gdbinit print_cvs not prepared for PHP 7

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Wed, 11 Jan 2017 11:18:38 +0000 (11:18 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  added a note to opache.fast_shutdown why its not enabled by default in php.ini

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Wed, 11 Jan 2017 11:18:26 +0000 (11:18 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  added a note to opache.fast_shutdown why its not enabled by default in php.ini

8 years agoadded a note to opache.fast_shutdown why its not enabled by default in php.ini
Markus Staab [Wed, 11 Jan 2017 10:51:25 +0000 (11:51 +0100)]
added a note to opache.fast_shutdown why its not enabled by default in php.ini

8 years agoMerge branch 'PHP-7.0' of git.php.net:/php-src into PHP-7.0
Joe Watkins [Wed, 11 Jan 2017 08:12:51 +0000 (08:12 +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:
  Fixed bug #67707 IV not needed for ECB encryption mode, but it returns a warning
  Fixed #73907 (nextSibling property not included in var_dump of DOMNode)
  Fixed bug #61858 (DOMAttr debug info generates E_WARNING)
  Fix glob-wrapper.phpt to not fail in Windows
  Fix #73893: A hidden danger of death cycle in a function of gd

8 years agoMerge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
Joe Watkins [Wed, 11 Jan 2017 08:12:40 +0000 (08:12 +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:
  Fixed bug #67707 IV not needed for ECB encryption mode, but it returns a warning
  Add support for "xfail" to phpt SKIPIF sections
  Fixed #73907 (nextSibling property not included in var_dump of DOMNode)
  Fixed bug #61858 (DOMAttr debug info generates E_WARNING)
  Fix glob-wrapper.phpt to not fail in Windows
  Set a session path for this test
  Fix #73893: A hidden danger of death cycle in a function of gd
  Missing %s
  Ok, maybe Nikita is right. We should default this on.
  Missed one. This needs gc as well
  These tests expect gc to be enabled

8 years agoMerge branch 'master' of git.php.net:/php-src
Joe Watkins [Wed, 11 Jan 2017 08:12:22 +0000 (08:12 +0000)]
Merge branch 'master' of git.php.net:/php-src

* 'master' of git.php.net:/php-src:
  Fixed bug #67707 IV not needed for ECB encryption mode, but it returns a warning
  Add support for "xfail" to phpt SKIPIF sections
  Fixed #73907 (nextSibling property not included in var_dump of DOMNode)
  Fixed bug #61858 (DOMAttr debug info generates E_WARNING)
  Fix glob-wrapper.phpt to not fail in Windows
  Set a session path for this test
  Set a session path for this test
  Fix #73893: A hidden danger of death cycle in a function of gd
  Missing %s
  Missing %s
  More missing gc inis
  Ok, maybe Nikita is right. We should default this on.
  Missed one. This needs gc as well
  Missed one. This needs gc as well
  These tests rely on gc being enabled
  These tests expect gc to be enabled

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Wed, 11 Jan 2017 08:10:58 +0000 (08:10 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fixed bug #71219 configure script incorrectly checks for ttyname_r

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Wed, 11 Jan 2017 08:09:55 +0000 (08:09 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #71219 configure script incorrectly checks for ttyname_r

8 years agoFixed bug #71219 configure script incorrectly checks for ttyname_r
Joe Watkins [Wed, 11 Jan 2017 08:09:10 +0000 (08:09 +0000)]
Fixed bug #71219 configure script incorrectly checks for ttyname_r

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Tue, 10 Jan 2017 22:45:01 +0000 (23:45 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Tue, 10 Jan 2017 22:44:45 +0000 (23:44 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFixed bug #67707 IV not needed for ECB encryption mode, but it returns a warning
Robrecht Plaisier [Fri, 14 Aug 2015 19:16:09 +0000 (19:16 +0000)]
Fixed bug #67707 IV not needed for ECB encryption mode, but it returns a warning

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Tue, 10 Jan 2017 22:32:46 +0000 (23:32 +0100)]
Merge branch 'PHP-7.1'

8 years agoAdd support for "xfail" to phpt SKIPIF sections
Nikita Popov [Tue, 22 Nov 2016 21:43:23 +0000 (22:43 +0100)]
Add support for "xfail" to phpt SKIPIF sections

If SKIPIF output starts with "xfail" instead of "skip", the test
will be marked as XFAIL with the following message. Example:

    --TEST--
    Test xfailif feature
    --SKIPIF--
    <?php
    if (some_cond()) die('xfail Expected to fail!');
    ?>
    --FILE--
    ...

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Tue, 10 Jan 2017 22:29:50 +0000 (23:29 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Tue, 10 Jan 2017 22:29:16 +0000 (23:29 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFixed #73907 (nextSibling property not included in var_dump of DOMNode)
Arnout Boks [Tue, 10 Jan 2017 19:48:45 +0000 (20:48 +0100)]
Fixed #73907 (nextSibling property not included in var_dump of DOMNode)

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Tue, 10 Jan 2017 22:25:23 +0000 (23:25 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Tue, 10 Jan 2017 22:24:41 +0000 (23:24 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFixed bug #61858 (DOMAttr debug info generates E_WARNING)
Arnout Boks [Tue, 10 Jan 2017 20:19:37 +0000 (21:19 +0100)]
Fixed bug #61858 (DOMAttr debug info generates E_WARNING)

It seems fair to remove this warning, given that:

* it is not documented in the official documentation
* the $specified property, which has a similar 'not implemented' status,
  also does not trigger a warning
* it apparently hinders quite a lot of people during debugging, judging by
  the number of votes on the bug

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Tue, 10 Jan 2017 22:19:43 +0000 (23:19 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Tue, 10 Jan 2017 22:19:30 +0000 (23:19 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoMerge branch 'PHP-5.6' into PHP-7.0
Nikita Popov [Tue, 10 Jan 2017 22:19:19 +0000 (23:19 +0100)]
Merge branch 'PHP-5.6' into PHP-7.0

8 years agoFix glob-wrapper.phpt to not fail in Windows
Mitch Hagstrand [Tue, 10 Jan 2017 19:51:55 +0000 (11:51 -0800)]
Fix glob-wrapper.phpt to not fail in Windows

8 years agoSet a session path for this test
Rasmus Lerdorf [Tue, 10 Jan 2017 20:18:36 +0000 (15:18 -0500)]
Set a session path for this test

8 years agoSet a session path for this test
Rasmus Lerdorf [Tue, 10 Jan 2017 20:17:50 +0000 (15:17 -0500)]
Set a session path for this test

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Tue, 10 Jan 2017 19:15:05 +0000 (20:15 +0100)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fix #73893: A hidden danger of death cycle in a function of gd

# Conflicts:
# ext/gd/libgd/gd_rotate.c

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Christoph M. Becker [Tue, 10 Jan 2017 19:12:42 +0000 (20:12 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fix #73893: A hidden danger of death cycle in a function of gd

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Tue, 10 Jan 2017 19:08:59 +0000 (20:08 +0100)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Missing %s

8 years agoFix #73893: A hidden danger of death cycle in a function of gd
Christoph M. Becker [Tue, 10 Jan 2017 18:31:33 +0000 (19:31 +0100)]
Fix #73893: A hidden danger of death cycle in a function of gd

We remove the unused, but potentially dangerous functions.

8 years agoMissing %s
Rasmus Lerdorf [Tue, 10 Jan 2017 18:51:19 +0000 (13:51 -0500)]
Missing %s

8 years agoMissing %s
Rasmus Lerdorf [Tue, 10 Jan 2017 18:50:49 +0000 (13:50 -0500)]
Missing %s

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Tue, 10 Jan 2017 18:49:54 +0000 (19:49 +0100)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Ok, maybe Nikita is right. We should default this on.
  Missed one. This needs gc as well
  These tests expect gc to be enabled

8 years agoMore missing gc inis
Rasmus Lerdorf [Tue, 10 Jan 2017 17:17:31 +0000 (12:17 -0500)]
More missing gc inis

8 years agoOk, maybe Nikita is right. We should default this on.
Rasmus Lerdorf [Tue, 10 Jan 2017 17:16:45 +0000 (12:16 -0500)]
Ok, maybe Nikita is right. We should default this on.

8 years agoMissed one. This needs gc as well
Rasmus Lerdorf [Tue, 10 Jan 2017 17:08:34 +0000 (12:08 -0500)]
Missed one. This needs gc as well

8 years agoMissed one. This needs gc as well
Rasmus Lerdorf [Tue, 10 Jan 2017 17:07:47 +0000 (12:07 -0500)]
Missed one. This needs gc as well

8 years agoThese tests rely on gc being enabled
Rasmus Lerdorf [Tue, 10 Jan 2017 16:57:59 +0000 (11:57 -0500)]
These tests rely on gc being enabled

8 years agoThese tests expect gc to be enabled
Rasmus Lerdorf [Tue, 10 Jan 2017 16:54:49 +0000 (11:54 -0500)]
These tests expect gc to be enabled

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Tue, 10 Jan 2017 13:57:10 +0000 (13:57 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  pull-request/1807:  test for dns_get_record

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Tue, 10 Jan 2017 13:56:49 +0000 (13:56 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  pull-request/1807:  test for dns_get_record

8 years agoMerge branch 'pull-request/1807' into PHP-7.0
Joe Watkins [Tue, 10 Jan 2017 13:56:26 +0000 (13:56 +0000)]
Merge branch 'pull-request/1807' into PHP-7.0

* pull-request/1807:
  test for dns_get_record

8 years agopull-request/1807:
marcosptf [Sun, 13 Mar 2016 04:29:04 +0000 (01:29 -0300)]
pull-request/1807:
test for dns_get_record

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Tue, 10 Jan 2017 11:51:56 +0000 (11:51 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Prevent fd leak in readdir_r that causes false negative on readdir_r implementation when compiled with AddressSanitizer

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Tue, 10 Jan 2017 11:51:39 +0000 (11:51 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Prevent fd leak in readdir_r that causes false negative on readdir_r implementation when compiled with AddressSanitizer

8 years agoPrevent fd leak in readdir_r that causes false negative on readdir_r implementation...
Ondřej Surý [Tue, 10 Jan 2017 09:21:54 +0000 (10:21 +0100)]
Prevent fd leak in readdir_r that causes false negative on readdir_r implementation when compiled with AddressSanitizer

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Tue, 10 Jan 2017 06:21:14 +0000 (06:21 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fixed #73902 mention router support in usage output for php-cli

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Tue, 10 Jan 2017 06:20:56 +0000 (06:20 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed #73902 mention router support in usage output for php-cli

8 years agoFixed #73902 mention router support in usage output for php-cli
Joe Watkins [Tue, 10 Jan 2017 06:19:34 +0000 (06:19 +0000)]
Fixed #73902 mention router support in usage output for php-cli

8 years agoMerge branch 'PHP-7.1'
Sara Golemon [Tue, 10 Jan 2017 00:08:31 +0000 (16:08 -0800)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fix open_basedir check for glob:// opendir wrapper

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Sara Golemon [Tue, 10 Jan 2017 00:08:08 +0000 (16:08 -0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fix open_basedir check for glob:// opendir wrapper

8 years agoMerge branch 'PHP-5.6' into PHP-7.0
Sara Golemon [Tue, 10 Jan 2017 00:07:33 +0000 (16:07 -0800)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  Fix open_basedir check for glob:// opendir wrapper

8 years agoCompact literals: Deduplicate empty array literals
Nikita Popov [Fri, 30 Dec 2016 21:23:12 +0000 (22:23 +0100)]
Compact literals: Deduplicate empty array literals

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Mon, 9 Jan 2017 23:09:41 +0000 (00:09 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Mon, 9 Jan 2017 23:09:02 +0000 (00:09 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoUn-XFAIL serialization test
Nikita Popov [Mon, 9 Jan 2017 23:07:38 +0000 (00:07 +0100)]
Un-XFAIL serialization test

8 years agoFix ZEND_SIGNED_MULTIPLY_LONG for AArch64
Andy Postnikov [Sat, 10 Dec 2016 20:51:17 +0000 (23:51 +0300)]
Fix ZEND_SIGNED_MULTIPLY_LONG for AArch64

Register operands are required in this context.

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Mon, 9 Jan 2017 22:30:07 +0000 (23:30 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Mon, 9 Jan 2017 22:29:33 +0000 (23:29 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFix check for linux getrandom syscall
Leigh [Wed, 23 Dec 2015 21:54:15 +0000 (21:54 +0000)]
Fix check for linux getrandom syscall

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Mon, 9 Jan 2017 22:23:07 +0000 (23:23 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Mon, 9 Jan 2017 22:22:59 +0000 (23:22 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoAdd print zend string function to gdbinit
Mitch Hagstrand [Mon, 9 Jan 2017 21:10:57 +0000 (13:10 -0800)]
Add print zend string function to gdbinit

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Mon, 9 Jan 2017 22:21:17 +0000 (23:21 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Mon, 9 Jan 2017 22:20:29 +0000 (23:20 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoMerge branch 'PHP-7.1'
Dmitry Stogov [Mon, 9 Jan 2017 19:25:25 +0000 (22:25 +0300)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Improved GENERATOR_CREATE opcode handler.

8 years agoImproved GENERATOR_CREATE opcode handler.
Dmitry Stogov [Mon, 9 Jan 2017 19:24:21 +0000 (22:24 +0300)]
Improved GENERATOR_CREATE opcode handler.

8 years agoFix open_basedir check for glob:// opendir wrapper
Sara Golemon [Mon, 9 Jan 2017 19:02:50 +0000 (11:02 -0800)]
Fix open_basedir check for glob:// opendir wrapper

php_check_open_basedir() expects a local filesystem path,
but we're handing it a `glob://...` URI instead.

Move the check to after the path trim so that we're checking
a meaningful pathspec.

8 years agoRevert "set more suitable defaults for opcache in ini and code"
Joe Watkins [Mon, 9 Jan 2017 17:08:07 +0000 (17:08 +0000)]
Revert "set more suitable defaults for opcache in ini and code"

This reverts commit b655f2d6325c64e5da1f016a2742a6abf669ecaf.

This has been deemed unsuitable for 7.0

8 years agoRemove trailing whitespace
Adam Baratz [Mon, 9 Jan 2017 16:41:54 +0000 (11:41 -0500)]
Remove trailing whitespace

8 years agoExplicitly allow NULL values for dblib compatibility
Adam Baratz [Mon, 9 Jan 2017 16:13:13 +0000 (11:13 -0500)]
Explicitly allow NULL values for dblib compatibility

MSSQL won't necessarily default columns to NULL, see:
https://msdn.microsoft.com/en-us/library/ms174979.aspx#Nullability Rules Within a Table Definition

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Mon, 9 Jan 2017 16:22:01 +0000 (16:22 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  update release process notes

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Mon, 9 Jan 2017 16:21:21 +0000 (16:21 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  update release process notes

8 years agoupdate release process notes
Joe Watkins [Mon, 9 Jan 2017 16:20:48 +0000 (16:20 +0000)]
update release process notes

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

* 'master' of git.php.net:/php-src:
  Fixed bug #73896 (spl_autoload() crashes when calls magic _call())

8 years agoMerge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
Joe Watkins [Mon, 9 Jan 2017 15:59:40 +0000 (15:59 +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:
  Fixed bug #73896 (spl_autoload() crashes when calls magic _call())

8 years agoMerge branch 'PHP-7.0' of git.php.net:/php-src into PHP-7.0
Joe Watkins [Mon, 9 Jan 2017 15:59:21 +0000 (15:59 +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:
  Fixed bug #73896 (spl_autoload() crashes when calls magic _call())

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Mon, 9 Jan 2017 15:58:22 +0000 (15:58 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  fix stub to accept user properly

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

* PHP-7.0:
  fix stub to accept user properly

8 years agofix stub to accept user properly
Joe Watkins [Mon, 9 Jan 2017 15:57:46 +0000 (15:57 +0000)]
fix stub to accept user properly

8 years agoMerge branch 'PHP-7.1'
Dmitry Stogov [Mon, 9 Jan 2017 12:13:48 +0000 (15:13 +0300)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fixed bug #73896 (spl_autoload() crashes when calls magic _call())

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Dmitry Stogov [Mon, 9 Jan 2017 12:12:22 +0000 (15:12 +0300)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #73896 (spl_autoload() crashes when calls magic _call())

8 years agoFixed bug #73896 (spl_autoload() crashes when calls magic _call())
Dmitry Stogov [Mon, 9 Jan 2017 12:11:33 +0000 (15:11 +0300)]
Fixed bug #73896 (spl_autoload() crashes when calls magic _call())

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Mon, 9 Jan 2017 11:00:37 +0000 (11:00 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  merge PR #2290: enable opcache in CLI in 7.1+

8 years agomerge PR #2290: enable opcache in CLI in 7.1+
Joe Watkins [Mon, 9 Jan 2017 11:00:05 +0000 (11:00 +0000)]
merge PR #2290: enable opcache in CLI in 7.1+

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Mon, 9 Jan 2017 10:57:29 +0000 (10:57 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  set more suitable defaults for opcache in ini and code

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Mon, 9 Jan 2017 10:56:54 +0000 (10:56 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  set more suitable defaults for opcache in ini and code

8 years agoMerge branch 'pull-request/2291' into PHP-7.0
Joe Watkins [Mon, 9 Jan 2017 10:54:57 +0000 (10:54 +0000)]
Merge branch 'pull-request/2291' into PHP-7.0

* pull-request/2291:
  set more suitable defaults for opcache in ini and code

8 years agoset more suitable defaults for opcache in ini and code
Markus Staab [Mon, 9 Jan 2017 10:33:05 +0000 (11:33 +0100)]
set more suitable defaults for opcache in ini and code

8 years agoMerge branch 'PHP-7.1'
Xinchen Hui [Mon, 9 Jan 2017 08:30:55 +0000 (16:30 +0800)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fixed bug #73854 (Always true condition in php_openssl_sockop_io)

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Mon, 9 Jan 2017 08:30:48 +0000 (16:30 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #73854 (Always true condition in php_openssl_sockop_io)

8 years agoFixed bug #73854 (Always true condition in php_openssl_sockop_io)
Xinchen Hui [Mon, 9 Jan 2017 08:30:00 +0000 (16:30 +0800)]
Fixed bug #73854 (Always true condition in php_openssl_sockop_io)

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Mon, 9 Jan 2017 05:33:22 +0000 (05:33 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fixed bug #72979 money_format stores wrong length on AIX

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Mon, 9 Jan 2017 05:32:22 +0000 (05:32 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #72979 money_format stores wrong length on AIX

8 years agoFixed bug #72979 money_format stores wrong length on AIX
Joe Watkins [Mon, 9 Jan 2017 05:31:41 +0000 (05:31 +0000)]
Fixed bug #72979 money_format stores wrong length on AIX

8 years agoMerge branch 'PHP-7.1'
Joe Watkins [Mon, 9 Jan 2017 05:25:31 +0000 (05:25 +0000)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  update ip2long_varation2 test to skip for AIX, see bug #72973

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Mon, 9 Jan 2017 05:25:17 +0000 (05:25 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  update ip2long_varation2 test to skip for AIX, see bug #72973

8 years agoupdate ip2long_varation2 test to skip for AIX, see bug #72973
Joe Watkins [Mon, 9 Jan 2017 05:24:44 +0000 (05:24 +0000)]
update ip2long_varation2 test to skip for AIX, see bug #72973