]> granicus.if.org Git - php/log
php
10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Keyur Govande [Fri, 15 Aug 2014 23:47:06 +0000 (23:47 +0000)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Update NEWS
  Fix another failing test
  Add NEWS
  Fix failing tests
  Patch for bug #67839 (mysqli does not handle 4-byte floats correctly)

Conflicts:
ext/mysqli/tests/mysqli_change_user.phpt

10 years agoUpdate NEWS
Keyur Govande [Fri, 15 Aug 2014 23:38:14 +0000 (23:38 +0000)]
Update NEWS

10 years agoFix another failing test
Keyur Govande [Fri, 15 Aug 2014 23:26:21 +0000 (23:26 +0000)]
Fix another failing test

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Keyur Govande [Fri, 15 Aug 2014 23:13:36 +0000 (23:13 +0000)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Add NEWS
  Fix failing tests
  Patch for bug #67839 (mysqli does not handle 4-byte floats correctly)

Conflicts:
ext/mysqli/tests/table.inc

10 years agoAdd NEWS
Keyur Govande [Fri, 15 Aug 2014 23:08:29 +0000 (23:08 +0000)]
Add NEWS

10 years agoMerge branch 'pull-request/772' into PHP-5.4
Keyur Govande [Fri, 15 Aug 2014 23:06:55 +0000 (23:06 +0000)]
Merge branch 'pull-request/772' into PHP-5.4

* pull-request/772:
  Fix failing tests
  Patch for bug #67839 (mysqli does not handle 4-byte floats correctly)

Before the patch, a value of 9.99 in a FLOAT column came out of mysqli
as 9.9998998641968. This is because it would naively cast a 4-byte float
into PHP's internal 8-byte double.
To fix this, with GCC we use the built-in decimal support to "up-convert"
the 4-byte float to a 8-byte double.
When that is not available, we fall back to converting the float
to a string and then converting the string to a double. This mimics
what MySQL does.

10 years agoadd NEWS for 5.6 too
Stanislav Malyshev [Fri, 15 Aug 2014 01:16:33 +0000 (18:16 -0700)]
add NEWS for 5.6 too

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Fri, 15 Aug 2014 00:22:06 +0000 (17:22 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Fix bug #67716 - Segfault in cdf.c
  Fix bug #67716 - Segfault in cdf.c

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Fri, 15 Aug 2014 00:21:37 +0000 (17:21 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fix bug #67716 - Segfault in cdf.c

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Fri, 15 Aug 2014 00:19:51 +0000 (17:19 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fix bug #67716 - Segfault in cdf.c

10 years agoFix bug #67716 - Segfault in cdf.c
Remi Collet [Fri, 15 Aug 2014 00:19:03 +0000 (17:19 -0700)]
Fix bug #67716 - Segfault in cdf.c

10 years agoFix bug #67716 - Segfault in cdf.c
Remi Collet [Fri, 15 Aug 2014 00:19:03 +0000 (17:19 -0700)]
Fix bug #67716 - Segfault in cdf.c

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Fri, 15 Aug 2014 00:08:37 +0000 (17:08 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  fix test

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Fri, 15 Aug 2014 00:07:45 +0000 (17:07 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  fix test

10 years agofix test
Stanislav Malyshev [Fri, 15 Aug 2014 00:07:28 +0000 (17:07 -0700)]
fix test

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Fri, 15 Aug 2014 00:05:12 +0000 (17:05 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  split the glob() test to test different basedir
  fixed glob() edge case on windows, ref bug #47358
  - fix bug #47358, glob returns error, should be empty array()

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Fri, 15 Aug 2014 00:05:03 +0000 (17:05 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  split the glob() test to test different basedir

10 years agosplit the glob() test to test different basedir
Anatol Belski [Tue, 20 Aug 2013 11:39:30 +0000 (13:39 +0200)]
split the glob() test to test different basedir

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Thu, 14 Aug 2014 23:59:14 +0000 (16:59 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  fixed glob() edge case on windows, ref bug #47358
  - fix bug #47358, glob returns error, should be empty array()

10 years agofixed glob() edge case on windows, ref bug #47358
Anatol Belski [Mon, 19 Aug 2013 12:21:16 +0000 (14:21 +0200)]
fixed glob() edge case on windows, ref bug #47358

10 years ago- fix bug #47358, glob returns error, should be empty array()
Pierre Joye [Tue, 8 Jan 2013 14:02:04 +0000 (15:02 +0100)]
- fix bug #47358, glob returns error, should be empty array()

Conflicts:
ext/standard/dir.c

10 years agoFix failing tests
Keyur Govande [Thu, 14 Aug 2014 18:20:26 +0000 (18:20 +0000)]
Fix failing tests

10 years agoPatch for bug #67839 (mysqli does not handle 4-byte floats correctly)
Keyur Govande [Thu, 14 Aug 2014 18:19:56 +0000 (18:19 +0000)]
Patch for bug #67839 (mysqli does not handle 4-byte floats correctly)

Before the patch, a value of 9.99 in a FLOAT column came out of mysqli
as 9.9998998641968. This is because it would naively cast a 4-byte float
into PHP's internal 8-byte double.
To fix this, with GCC we use the built-in decimal support to "up-convert"
the 4-byte float to a 8-byte double.
When that is not available, we fall back to converting the float
to a string and then converting the string to a double. This mimics
what MySQL does.

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Johannes Schlüter [Thu, 14 Aug 2014 15:25:22 +0000 (17:25 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Johannes Schlüter [Thu, 14 Aug 2014 15:22:25 +0000 (17:22 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

10 years agoMerge branch 'PHP-5.3' into PHP-5.4
Johannes Schlüter [Thu, 14 Aug 2014 15:13:44 +0000 (17:13 +0200)]
Merge branch 'PHP-5.3' into PHP-5.4

10 years agoUpdate Git rules PHP-5.3
Johannes Schlüter [Thu, 14 Aug 2014 15:08:02 +0000 (17:08 +0200)]
Update Git rules

10 years agoBack to -dev (with EOL notice in NEWS)
Johannes Schlüter [Thu, 14 Aug 2014 15:05:20 +0000 (17:05 +0200)]
Back to -dev (with EOL notice in NEWS)

10 years agonew NEWS block for the next release
Ferenc Kovacs [Thu, 14 Aug 2014 00:17:55 +0000 (02:17 +0200)]
new NEWS block for the next release

10 years agoIt's 2014 already, fix copyright year where user visible PHP-5.3.29 php-5.3.29
Johannes Schlüter [Wed, 13 Aug 2014 19:22:50 +0000 (21:22 +0200)]
It's 2014 already, fix copyright year where user visible

Left out all file headers

10 years agoPHP 5.3.29
Johannes Schlüter [Wed, 13 Aug 2014 16:36:10 +0000 (18:36 +0200)]
PHP 5.3.29

10 years agoSome changes were lost in the merge commit of #66091
Tjerk Meesters [Wed, 13 Aug 2014 12:57:10 +0000 (20:57 +0800)]
Some changes were lost in the merge commit of #66091

10 years agoUpdated NEWS for #66091
Tjerk Meesters [Wed, 13 Aug 2014 12:16:22 +0000 (20:16 +0800)]
Updated NEWS for #66091

10 years agoFixed #66091
Tjerk Meesters [Wed, 13 Aug 2014 12:12:42 +0000 (20:12 +0800)]
Fixed #66091

10 years agoUpdated NEWS for #66091
Tjerk Meesters [Wed, 13 Aug 2014 12:20:54 +0000 (20:20 +0800)]
Updated NEWS for #66091

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Tjerk Meesters [Wed, 13 Aug 2014 12:20:10 +0000 (20:20 +0800)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Updated NEWS for #66091
  Fixed #66091

Conflicts:
ext/date/php_date.c

10 years agoUpdated NEWS for #66091
Tjerk Meesters [Wed, 13 Aug 2014 12:16:22 +0000 (20:16 +0800)]
Updated NEWS for #66091

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Tjerk Meesters [Wed, 13 Aug 2014 12:15:52 +0000 (20:15 +0800)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fixed #66091

Conflicts:
ext/date/php_date.c

10 years agoFixed #66091
Tjerk Meesters [Wed, 13 Aug 2014 12:12:42 +0000 (20:12 +0800)]
Fixed #66091

10 years agoMerge branch 'pr-765' into PHP-5.6
Ferenc Kovacs [Tue, 12 Aug 2014 12:47:03 +0000 (14:47 +0200)]
Merge branch 'pr-765' into PHP-5.6

* pr-765:
  NEWS entry for e6d93a1 / d73d44c
  restore FPM compatibility with mod_fastcgi broken since #694 / 67541, fixes bug 67606
  Revert "Merge branch 'pull-request/694' into PHP-5.6"

10 years agoupdated NEWS
Anatol Belski [Tue, 12 Aug 2014 09:52:50 +0000 (11:52 +0200)]
updated NEWS

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Anatol Belski [Tue, 12 Aug 2014 09:52:07 +0000 (11:52 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  updated NEWS
  updated NEWS
  backported the fix for bug #41577

10 years agoupdated NEWS
Anatol Belski [Tue, 12 Aug 2014 09:51:42 +0000 (11:51 +0200)]
updated NEWS

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Tue, 12 Aug 2014 09:50:55 +0000 (11:50 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  updated NEWS
  backported the fix for bug #41577

10 years agoupdated NEWS
Anatol Belski [Tue, 12 Aug 2014 09:50:26 +0000 (11:50 +0200)]
updated NEWS

10 years agobackported the fix for bug #41577
Anatol Belski [Tue, 12 Aug 2014 09:49:46 +0000 (11:49 +0200)]
backported the fix for bug #41577

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Ferenc Kovacs [Tue, 12 Aug 2014 08:38:35 +0000 (10:38 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  fix the failing date tests introduced with the latest timezonedb update Derick confirmed on irc that the new/current behavior is the correct and that the tests should be updated to reflect it

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Ferenc Kovacs [Tue, 12 Aug 2014 08:37:44 +0000 (10:37 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  fix the failing date tests introduced with the latest timezonedb update Derick confirmed on irc that the new/current behavior is the correct and that the tests should be updated to reflect it

10 years agofix the failing date tests introduced with the latest timezonedb update
Ferenc Kovacs [Tue, 12 Aug 2014 08:34:54 +0000 (10:34 +0200)]
fix the failing date tests introduced with the latest timezonedb update
Derick confirmed on irc that the new/current behavior is the correct and that the tests should be updated to reflect it

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Xinchen Hui [Mon, 11 Aug 2014 09:47:36 +0000 (17:47 +0800)]
Merge branch 'PHP-5.5' into PHP-5.6

10 years agoFixed bug #67813 (CachingIterator::__construct InvalidArgumentException wrong message)
Xinchen Hui [Mon, 11 Aug 2014 09:46:56 +0000 (17:46 +0800)]
Fixed bug #67813 (CachingIterator::__construct InvalidArgumentException wrong message)

10 years agoMerge branch 'PHP-5.5' of https://git.php.net/repository/php-src into PHP-5.5
Xinchen Hui [Mon, 11 Aug 2014 09:44:42 +0000 (17:44 +0800)]
Merge branch 'PHP-5.5' of https://git.php.net/repository/php-src into PHP-5.5

10 years agoNEWS entry for e6d93a1 / d73d44c
David Zuelke [Sat, 9 Aug 2014 06:30:50 +0000 (08:30 +0200)]
NEWS entry for e6d93a1 / d73d44c

10 years agorestore FPM compatibility with mod_fastcgi broken since #694 / 67541, fixes bug 67606
David Zuelke [Sat, 9 Aug 2014 06:26:33 +0000 (08:26 +0200)]
restore FPM compatibility with mod_fastcgi broken since #694 / 67541, fixes bug 67606

10 years agoRevert "Merge branch 'pull-request/694' into PHP-5.6"
David Zuelke [Sat, 9 Aug 2014 06:14:23 +0000 (08:14 +0200)]
Revert "Merge branch 'pull-request/694' into PHP-5.6"

This reverts commit d96de86b5b4ca8adf63ac6e07ab57fc2ec9d87f4, reversing
changes made to b1e32a4f7a6c2351a2006c2c1b9085336ba513e4.

10 years agoAdd __debugInfo() to UPGRADING.
Adam Harvey [Fri, 8 Aug 2014 19:00:13 +0000 (12:00 -0700)]
Add __debugInfo() to UPGRADING.

RMs: this is an UPGRADING only change, and should be safe for RCs.

Developers: please remember to update UPGRADING, otherwise there's a good
chance your shiny new feature won't be documented! (As has happened here.)

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Anatol Belski [Thu, 7 Aug 2014 17:50:45 +0000 (19:50 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  fix TS build

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Thu, 7 Aug 2014 17:50:25 +0000 (19:50 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  fix TS build

10 years agofix TS build
Anatol Belski [Thu, 7 Aug 2014 17:49:59 +0000 (19:49 +0200)]
fix TS build

10 years agoUpdate NEWS
Daniel Lowrey [Thu, 7 Aug 2014 16:40:52 +0000 (12:40 -0400)]
Update NEWS

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Daniel Lowrey [Thu, 7 Aug 2014 16:39:52 +0000 (12:39 -0400)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Update NEWS
  Update NEWS

10 years agoUpdate NEWS
Daniel Lowrey [Thu, 7 Aug 2014 16:39:42 +0000 (12:39 -0400)]
Update NEWS

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Daniel Lowrey [Thu, 7 Aug 2014 16:38:04 +0000 (12:38 -0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Update NEWS

10 years agoUpdate NEWS
Daniel Lowrey [Thu, 7 Aug 2014 16:37:50 +0000 (12:37 -0400)]
Update NEWS

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Daniel Lowrey [Thu, 7 Aug 2014 16:07:55 +0000 (12:07 -0400)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Bug #41631: Observe socket read timeouts in SSL streams

Conflicts:
ext/openssl/xp_ssl.c

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Daniel Lowrey [Thu, 7 Aug 2014 15:51:42 +0000 (11:51 -0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Bug #41631: Observe socket read timeouts in SSL streams

10 years agoBug #41631: Observe socket read timeouts in SSL streams
Daniel Lowrey [Thu, 7 Aug 2014 15:47:42 +0000 (11:47 -0400)]
Bug #41631: Observe socket read timeouts in SSL streams

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Anatol Belski [Thu, 7 Aug 2014 13:22:28 +0000 (15:22 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  wrap int8_t and int16_t with #ifdef to avoid possible clashes

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Thu, 7 Aug 2014 13:21:42 +0000 (15:21 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  wrap int8_t and int16_t with #ifdef to avoid possible clashes

10 years agowrap int8_t and int16_t with #ifdef to avoid possible clashes
Anatol Belski [Thu, 7 Aug 2014 13:20:17 +0000 (15:20 +0200)]
wrap int8_t and int16_t with #ifdef to avoid possible clashes

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Derick Rethans [Thu, 7 Aug 2014 09:22:14 +0000 (10:22 +0100)]
Merge branch 'PHP-5.5' into PHP-5.6

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Derick Rethans [Thu, 7 Aug 2014 09:22:10 +0000 (10:22 +0100)]
Merge branch 'PHP-5.4' into PHP-5.5

10 years ago- Updated to version 2014.6 (2014f)
Derick Rethans [Thu, 7 Aug 2014 09:22:09 +0000 (10:22 +0100)]
- Updated to version 2014.6 (2014f)

10 years agoRemoved Countable::count() change info from UPGRADE.INTERNALS too
Bob Weinand [Wed, 6 Aug 2014 19:13:58 +0000 (21:13 +0200)]
Removed Countable::count() change info from UPGRADE.INTERNALS too

10 years agoRevert "Add SO_REUSEPORT + SO_BROADCAST support via socket stream context option"
Ferenc Kovacs [Wed, 6 Aug 2014 18:33:48 +0000 (20:33 +0200)]
Revert "Add SO_REUSEPORT + SO_BROADCAST support via socket stream context option"

This reverts commit a51bf0cadf7862d10b2cc19cae2c991d24d670b1.

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Andrey Hristov [Wed, 6 Aug 2014 14:03:39 +0000 (17:03 +0300)]
Merge branch 'PHP-5.5' into PHP-5.6

Conflicts:
NEWS
configure.in
main/php_version.h

10 years agoMerge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5
Andrey Hristov [Wed, 6 Aug 2014 14:02:17 +0000 (17:02 +0300)]
Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5

Conflicts:
NEWS
configure.in
main/php_version.h

10 years agoMerge branch 'PHP-5.6' of git.php.net:php-src into PHP-5.6
Andrey Hristov [Wed, 6 Aug 2014 13:59:56 +0000 (16:59 +0300)]
Merge branch 'PHP-5.6' of git.php.net:php-src into PHP-5.6

Conflicts:
NEWS

10 years agoUse callback structure
Andrey Hristov [Wed, 6 Aug 2014 13:50:27 +0000 (16:50 +0300)]
Use callback structure

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Andrey Hristov [Wed, 6 Aug 2014 13:25:12 +0000 (16:25 +0300)]
Merge branch 'PHP-5.5' into PHP-5.6

Conflicts:
ext/fileinfo/data_file.c
ext/fileinfo/libmagic/softmagic.c
ext/fileinfo/magicdata.patch

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Andrey Hristov [Wed, 6 Aug 2014 12:28:06 +0000 (15:28 +0300)]
Merge branch 'PHP-5.4' into PHP-5.5

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Andrey Hristov [Wed, 6 Aug 2014 12:27:56 +0000 (15:27 +0300)]
Merge branch 'PHP-5.4' into PHP-5.5

Conflicts:
NEWS
configure.in
main/php_version.h

10 years agoAdd EXPECTF
Andrey Hristov [Wed, 6 Aug 2014 12:27:29 +0000 (15:27 +0300)]
Add EXPECTF

10 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Andrey Hristov [Wed, 6 Aug 2014 11:52:55 +0000 (14:52 +0300)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

10 years agoFix handling of multi-result sets with PS...used to clean not only
Andrey Hristov [Wed, 6 Aug 2014 11:52:12 +0000 (14:52 +0300)]
Fix handling of multi-result sets with PS...used to clean not only
the result set but the whole PS.

10 years ago5.5.17 now
Julien Pauli [Wed, 6 Aug 2014 08:20:31 +0000 (10:20 +0200)]
5.5.17 now

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Wed, 6 Aug 2014 04:29:27 +0000 (21:29 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  5.4.33-dev now

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Wed, 6 Aug 2014 04:26:11 +0000 (21:26 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  5.4.33-dev now

Conflicts:
configure.in
main/php_version.h

10 years ago5.4.33-dev now
Stanislav Malyshev [Wed, 6 Aug 2014 04:24:55 +0000 (21:24 -0700)]
5.4.33-dev now

10 years agoAdd SO_REUSEPORT + SO_BROADCAST support via socket stream context option
Daniel Lowrey [Mon, 4 Aug 2014 16:41:51 +0000 (12:41 -0400)]
Add SO_REUSEPORT + SO_BROADCAST support via socket stream context option

10 years agoBFN
Michael Wallner [Tue, 5 Aug 2014 13:48:35 +0000 (15:48 +0200)]
BFN

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Michael Wallner [Tue, 5 Aug 2014 13:48:12 +0000 (15:48 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  BFN
  Fixed Bug #67724

10 years agoBFN
Michael Wallner [Tue, 5 Aug 2014 13:47:52 +0000 (15:47 +0200)]
BFN

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Michael Wallner [Tue, 5 Aug 2014 13:46:52 +0000 (15:46 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fixed Bug #67724

10 years agoFixed Bug #67724
Michael Wallner [Tue, 5 Aug 2014 13:44:43 +0000 (15:44 +0200)]
Fixed Bug #67724

(chained zlib filters silently fail with large amounts of data)

Use the same buffer size zlib uses internally to avoid
Z_DATA_ERROR on massively compressed data

10 years agotypo
Remi Collet [Mon, 4 Aug 2014 09:09:18 +0000 (11:09 +0200)]
typo

10 years agoMerge branch 'PHP-5.5' into PHP-5.6
Remi Collet [Mon, 4 Aug 2014 09:09:04 +0000 (11:09 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  typo
  typo

10 years agotypo
Remi Collet [Mon, 4 Aug 2014 09:08:54 +0000 (11:08 +0200)]
typo

10 years agoMerge branch 'PHP-5.4' into PHP-5.5
Remi Collet [Mon, 4 Aug 2014 09:08:41 +0000 (11:08 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  typo

10 years agotypo
Remi Collet [Mon, 4 Aug 2014 09:08:30 +0000 (11:08 +0200)]
typo