]> granicus.if.org Git - php/log
php
9 years agoBumb timelib version to 2015.01
Derick Rethans [Tue, 22 Sep 2015 07:41:56 +0000 (08:41 +0100)]
Bumb timelib version to 2015.01

9 years agoUse tabs for arg info indent in openssl.c
Jakub Zelenka [Sun, 20 Sep 2015 11:34:35 +0000 (12:34 +0100)]
Use tabs for arg info indent in openssl.c

9 years agoprepare for PHP-5.6.14RC1
Ferenc Kovacs [Wed, 16 Sep 2015 23:48:02 +0000 (01:48 +0200)]
prepare for PHP-5.6.14RC1

9 years agoAdd test XFAIL for bug #70470
Xinchen Hui [Fri, 11 Sep 2015 05:45:18 +0000 (13:45 +0800)]
Add test XFAIL for bug #70470

9 years agoAdded support of LDAP_OPT_TIMEOUT, fixes #69574
Côme Bernigaud [Wed, 9 Sep 2015 16:02:10 +0000 (18:02 +0200)]
Added support of LDAP_OPT_TIMEOUT, fixes #69574

9 years agoAdd entry for #70284 in 5.6.13
Lior Kaplan [Wed, 9 Sep 2015 11:20:04 +0000 (14:20 +0300)]
Add entry for #70284 in 5.6.13

9 years agoMerge branch 'PHP-5.5' into PHP-5.6
Côme Bernigaud [Wed, 9 Sep 2015 08:34:46 +0000 (10:34 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Fix bug in LDAP extensions' saving TIMELIMIT and DEREF

9 years agoMerge branch 'pull-request/1512' into PHP-5.5
Côme Bernigaud [Wed, 9 Sep 2015 08:30:17 +0000 (10:30 +0200)]
Merge branch 'pull-request/1512' into PHP-5.5

* pull-request/1512:
  Fix bug in LDAP extensions' saving TIMELIMIT and DEREF

9 years agoSkip test for old glibc iconv
Christoph M. Becker [Wed, 9 Sep 2015 02:27:28 +0000 (04:27 +0200)]
Skip test for old glibc iconv

bug32001.phpt has a high failure rate for the submitted reports. According to
several samples it seems the iconv implementation of glibc 2.12 (released
2010-05) is the culprit. It seems appropriate to skip the test for such old
versions.

9 years agoFix bug in LDAP extensions' saving TIMELIMIT and DEREF
Tyson Andre [Tue, 8 Sep 2015 22:24:09 +0000 (15:24 -0700)]
Fix bug in LDAP extensions' saving TIMELIMIT and DEREF

LDAP_OPT_TIMELIMIT and LDAP_OPT_DEREF's original values weren't
saved properly because of a bug introduced when copy and pasting.

This lead to the original timeout being changed
when specifying a temporary override (e.g. for ldap_search(..., $timeout))

9 years agoupdated NEWS
Christoph M. Becker [Wed, 9 Sep 2015 01:12:59 +0000 (03:12 +0200)]
updated NEWS

9 years agoFix #70456: mysqlnd doesn't activate TCP keep-alive when connecting to a server
Sergei Turchanov [Thu, 3 Sep 2015 07:24:34 +0000 (17:24 +1000)]
Fix #70456: mysqlnd doesn't activate TCP keep-alive when connecting to a server

libmysqlclient activates TCP keep-alive when connecting to a server. PHP
mysqlnd extension must do the same to maintain compatibility.

9 years agoFix build
Remi Collet [Mon, 7 Sep 2015 11:52:28 +0000 (13:52 +0200)]
Fix build

php_zip.c:1647:2: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
php_zip.c:1648:3: error: format not a string literal and no format arguments [-Werror=format-security]

9 years agoFix bug #60632: openssl_seal fails with AES
Jakub Zelenka [Sun, 6 Sep 2015 15:39:59 +0000 (16:39 +0100)]
Fix bug #60632: openssl_seal fails with AES

9 years agoupdated NEWS
Christoph M. Becker [Sat, 5 Sep 2015 12:39:24 +0000 (14:39 +0200)]
updated NEWS

9 years agoFix #68291: 404 on urls with '+'
Christoph M. Becker [Sat, 5 Sep 2015 11:52:41 +0000 (13:52 +0200)]
Fix #68291: 404 on urls with '+'

URI paths have to be treated according to RFC 3986 by the CLI web server, not
as application/x-www-form-urlencoded.

9 years agoupdated NEWS
Christoph M. Becker [Sat, 5 Sep 2015 01:14:56 +0000 (03:14 +0200)]
updated NEWS

9 years agoFix #70395: Missing ARG_INFO for openssl_seal()
Christoph M. Becker [Tue, 1 Sep 2015 23:13:49 +0000 (01:13 +0200)]
Fix #70395: Missing ARG_INFO for openssl_seal()

This patch adds the missing ARG_INFO for the optional 5th parameter $method.

9 years agoupdated NEWS
Christoph M. Becker [Fri, 4 Sep 2015 23:27:59 +0000 (01:27 +0200)]
updated NEWS

9 years agoFix #70001: Assigning to DOMNode::textContent does additional entity encoding
Christoph M. Becker [Tue, 7 Jul 2015 12:55:00 +0000 (14:55 +0200)]
Fix #70001: Assigning to DOMNode::textContent does additional entity encoding

Assigning to DOMNode::textContent encodes entities, what does not match the
behavior of DOMText::__construct() and DOMDocument::createTextNode. This patch
changes the behavior of DOMNode::textContent in this regard.

9 years agoupdated NEWS
Christoph M. Becker [Fri, 4 Sep 2015 22:37:08 +0000 (00:37 +0200)]
updated NEWS

9 years agoFix #70322: ZipArchive::close() doesn't indicate errors
Christoph M. Becker [Fri, 21 Aug 2015 20:26:26 +0000 (22:26 +0200)]
Fix #70322: ZipArchive::close() doesn't indicate errors

If an archive can't be written, ZipArchive::close() nonetheless returns TRUE.
We fix the return value to properly return success, and additionally raise a
warning on failure.

9 years agoFix #70361: HTTP stream wrapper doesn't close keep-alive connections
Niklas Keller [Tue, 25 Aug 2015 18:07:20 +0000 (20:07 +0200)]
Fix #70361: HTTP stream wrapper doesn't close keep-alive connections

9 years agomove the phpdbg NEWS entry to the correct version
Ferenc Kovacs [Wed, 2 Sep 2015 23:58:13 +0000 (01:58 +0200)]
move the phpdbg NEWS entry to the correct version

9 years agoadd missing news entries
Ferenc Kovacs [Wed, 2 Sep 2015 23:46:38 +0000 (01:46 +0200)]
add missing news entries

9 years agoMerge branch 'PHP-5.5' into PHP-5.6
Julien Pauli [Wed, 2 Sep 2015 15:55:57 +0000 (17:55 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Merge branch 'PHP-5.6'
  bump version

9 years agoMerge branch 'PHP-5.4' into PHP-5.5
Julien Pauli [Wed, 2 Sep 2015 15:55:20 +0000 (17:55 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Merge branch 'PHP-5.6'
  bump version

Conflicts:
configure.in
main/php_version.h

9 years agoMerge branch 'PHP-5.6' PHP-5.4
Matteo Beccati [Sat, 29 Aug 2015 08:48:53 +0000 (10:48 +0200)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  Added missing skipif for phar+zlib test

9 years agoMerge branch 'PHP-5.5' into PHP-5.6
Julien Pauli [Wed, 2 Sep 2015 15:42:00 +0000 (17:42 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  5.5.30 next

Conflicts:
configure.in
main/php_version.h

9 years ago5.5.30 next
Julien Pauli [Wed, 2 Sep 2015 15:40:56 +0000 (17:40 +0200)]
5.5.30 next

9 years agobump version
Stanislav Malyshev [Tue, 1 Sep 2015 20:12:16 +0000 (13:12 -0700)]
bump version

9 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Tue, 1 Sep 2015 19:51:48 +0000 (12:51 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  More fixes for bug #70219

9 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Tue, 1 Sep 2015 19:24:14 +0000 (12:24 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  fix unit tests

9 years agoMerge branch 'PHP-5.5' into PHP-5.5.29
Stanislav Malyshev [Tue, 1 Sep 2015 19:24:06 +0000 (12:24 -0700)]
Merge branch 'PHP-5.5' into PHP-5.5.29

* PHP-5.5:
  fix unit tests

9 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Tue, 1 Sep 2015 19:23:55 +0000 (12:23 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  fix unit tests

9 years agofix unit tests
Stanislav Malyshev [Tue, 1 Sep 2015 19:23:22 +0000 (12:23 -0700)]
fix unit tests

9 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Tue, 1 Sep 2015 19:06:41 +0000 (12:06 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  update NEWS
  add NEWS for fixes
  Improve fix for #70172
  Fix bug #70312 - HAVAL gives wrong hashes in specific cases
  fix test
  add test
  Fix bug #70366 - use-after-free vulnerability in unserialize() with SplDoublyLinkedList
  Fix bug #70365 - use-after-free vulnerability in unserialize() with SplObjectStorage
  Fix bug #70172 - Use After Free Vulnerability in unserialize()
  Fix bug #70388 - SOAP serialize_function_call() type confusion
  Fixed bug #70350: ZipArchive::extractTo allows for directory traversal when creating directories
  Improve fix for #70385
  Fix bug #70345 (Multiple vulnerabilities related to PCRE functions)
  Fix bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte value of 32 bytes)
  Fix bug #70219 (Use after free vulnerability in session deserializer)
  Fix for bug #69782
  Add CVE IDs asigned (post release) to PHP 5.4.43
  Add CVE IDs asigned to #69085 (PHP 5.4.39)
  5.4.45 next

Conflicts:
ext/pcre/php_pcre.c
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re
ext/zip/php_zip.c

9 years agoMerge branch '70284' into PHP-5.6
Stanislav Malyshev [Tue, 1 Sep 2015 19:05:02 +0000 (12:05 -0700)]
Merge branch '70284' into PHP-5.6

* 70284:
  Fix bug ##70284 (Use after free vulnerability in unserialize() with GMP)

9 years agoMerge branch 'PHP-5.5' into PHP-5.5.29
Stanislav Malyshev [Tue, 1 Sep 2015 19:04:04 +0000 (12:04 -0700)]
Merge branch 'PHP-5.5' into PHP-5.5.29

* PHP-5.5:
  update NEWS
  add NEWS for fixes

9 years agoupdate NEWS
Stanislav Malyshev [Tue, 1 Sep 2015 19:03:48 +0000 (12:03 -0700)]
update NEWS

9 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Tue, 1 Sep 2015 19:00:30 +0000 (12:00 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  add NEWS for fixes

9 years agoadd NEWS for fixes
Stanislav Malyshev [Tue, 1 Sep 2015 18:53:59 +0000 (11:53 -0700)]
add NEWS for fixes

9 years agoMerge branch 'PHP-5.5' into PHP-5.5.29
Stanislav Malyshev [Tue, 1 Sep 2015 18:43:27 +0000 (11:43 -0700)]
Merge branch 'PHP-5.5' into PHP-5.5.29

* PHP-5.5:
  Improve fix for #70172
  Add CVE IDs asigned (post release) to PHP 5.4.43
  Add CVE IDs asigned to #69085 (PHP 5.4.39)

Conflicts:
ext/pcre/php_pcre.c

9 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Tue, 1 Sep 2015 18:42:19 +0000 (11:42 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Improve fix for #70172
  Fix bug #70312 - HAVAL gives wrong hashes in specific cases
  fix test
  add test
  Fix bug #70366 - use-after-free vulnerability in unserialize() with SplDoublyLinkedList
  Fix bug #70365 - use-after-free vulnerability in unserialize() with SplObjectStorage
  Fix bug #70172 - Use After Free Vulnerability in unserialize()
  Fix bug #70388 - SOAP serialize_function_call() type confusion
  Fixed bug #70350: ZipArchive::extractTo allows for directory traversal when creating directories
  Improve fix for #70385
  Fix bug #70345 (Multiple vulnerabilities related to PCRE functions)
  Fix bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte value of 32 bytes)
  Fix bug #70219 (Use after free vulnerability in session deserializer)
  Fix for bug #69782
  Add CVE IDs asigned (post release) to PHP 5.4.43
  Add CVE IDs asigned to #69085 (PHP 5.4.39)
  5.4.45 next

Conflicts:
configure.in
ext/pcre/php_pcre.c
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re
main/php_version.h

9 years agoMerge branch 'PHP-5.4.45' into PHP-5.4
Stanislav Malyshev [Tue, 1 Sep 2015 18:40:15 +0000 (11:40 -0700)]
Merge branch 'PHP-5.4.45' into PHP-5.4

* PHP-5.4.45:
  Improve fix for #70172
  Fix bug #70312 - HAVAL gives wrong hashes in specific cases
  fix test
  add test
  Fix bug #70366 - use-after-free vulnerability in unserialize() with SplDoublyLinkedList
  Fix bug #70365 - use-after-free vulnerability in unserialize() with SplObjectStorage
  Fix bug #70172 - Use After Free Vulnerability in unserialize()
  Fix bug #70388 - SOAP serialize_function_call() type confusion
  Fixed bug #70350: ZipArchive::extractTo allows for directory traversal when creating directories
  Improve fix for #70385
  Fix bug #70345 (Multiple vulnerabilities related to PCRE functions)
  Fix bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte value of 32 bytes)
  Fix bug #70219 (Use after free vulnerability in session deserializer)
  Fix for bug #69782

9 years agoImprove fix for #70172
Stanislav Malyshev [Tue, 1 Sep 2015 18:38:15 +0000 (11:38 -0700)]
Improve fix for #70172

9 years agoMerge branch 'PHP-5.4.45' into PHP-5.5.29
Stanislav Malyshev [Tue, 1 Sep 2015 08:17:12 +0000 (01:17 -0700)]
Merge branch 'PHP-5.4.45' into PHP-5.5.29

* PHP-5.4.45:
  Fix bug #70312 - HAVAL gives wrong hashes in specific cases

9 years agoFix bug #70312 - HAVAL gives wrong hashes in specific cases
Stanislav Malyshev [Tue, 1 Sep 2015 08:16:30 +0000 (01:16 -0700)]
Fix bug #70312 - HAVAL gives wrong hashes in specific cases

9 years agoMerge branch 'PHP-5.4.45' into PHP-5.5.29
Stanislav Malyshev [Tue, 1 Sep 2015 07:59:55 +0000 (00:59 -0700)]
Merge branch 'PHP-5.4.45' into PHP-5.5.29

* PHP-5.4.45:
  fix test

9 years agofix test
Stanislav Malyshev [Tue, 1 Sep 2015 07:59:31 +0000 (00:59 -0700)]
fix test

9 years agoMerge branch 'PHP-5.4.45' into PHP-5.5.29
Stanislav Malyshev [Tue, 1 Sep 2015 07:28:39 +0000 (00:28 -0700)]
Merge branch 'PHP-5.4.45' into PHP-5.5.29

* PHP-5.4.45:
  add test
  Fix bug #70366 - use-after-free vulnerability in unserialize() with SplDoublyLinkedList
  Fix bug #70365 - use-after-free vulnerability in unserialize() with SplObjectStorage
  Fix bug #70172 - Use After Free Vulnerability in unserialize()
  Fix bug #70388 - SOAP serialize_function_call() type confusion
  Fixed bug #70350: ZipArchive::extractTo allows for directory traversal when creating directories
  Improve fix for #70385
  Fix bug #70345 (Multiple vulnerabilities related to PCRE functions)
  Fix bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte value of 32 bytes)

Conflicts:
ext/pcre/php_pcre.c
ext/standard/var_unserializer.c

9 years agoadd test
Stanislav Malyshev [Tue, 1 Sep 2015 07:26:12 +0000 (00:26 -0700)]
add test

9 years agoFix bug #70366 - use-after-free vulnerability in unserialize() with SplDoublyLinkedList
Stanislav Malyshev [Tue, 1 Sep 2015 07:20:45 +0000 (00:20 -0700)]
Fix bug #70366 - use-after-free vulnerability in unserialize() with SplDoublyLinkedList

9 years agoFix bug #70365 - use-after-free vulnerability in unserialize() with SplObjectStorage
Stanislav Malyshev [Tue, 1 Sep 2015 07:14:15 +0000 (00:14 -0700)]
Fix bug #70365 - use-after-free vulnerability in unserialize() with SplObjectStorage

9 years agoFix bug #70172 - Use After Free Vulnerability in unserialize()
Stanislav Malyshev [Tue, 1 Sep 2015 04:28:11 +0000 (21:28 -0700)]
Fix bug #70172 - Use After Free Vulnerability in unserialize()

9 years agoFix bug #70388 - SOAP serialize_function_call() type confusion
Stanislav Malyshev [Tue, 1 Sep 2015 04:06:03 +0000 (21:06 -0700)]
Fix bug #70388 - SOAP serialize_function_call() type confusion

9 years agoMerge branch 'PHP-5.6' of git.php.net:/php-src into PHP-5.6
Xinchen Hui [Sun, 30 Aug 2015 12:34:15 +0000 (05:34 -0700)]
Merge branch 'PHP-5.6' of git.php.net:/php-src into PHP-5.6

9 years agoFixed bug #70389 (PDO constructor changes unrelated variables)
Xinchen Hui [Sun, 30 Aug 2015 12:02:13 +0000 (05:02 -0700)]
Fixed bug #70389 (PDO constructor changes unrelated variables)

9 years agoFixed bug #70350: ZipArchive::extractTo allows for directory traversal when creating...
Stanislav Malyshev [Sun, 30 Aug 2015 07:38:08 +0000 (00:38 -0700)]
Fixed bug #70350: ZipArchive::extractTo allows for directory traversal when creating directories

9 years agoImprove fix for #70385
Stanislav Malyshev [Sun, 30 Aug 2015 06:01:36 +0000 (23:01 -0700)]
Improve fix for #70385

9 years agoAdded missing skipif for phar+zlib test
Matteo Beccati [Sat, 29 Aug 2015 08:41:31 +0000 (10:41 +0200)]
Added missing skipif for phar+zlib test

9 years agoFix bug #70345 (Multiple vulnerabilities related to PCRE functions)
Stanislav Malyshev [Sat, 29 Aug 2015 05:52:50 +0000 (22:52 -0700)]
Fix bug #70345 (Multiple vulnerabilities related to PCRE functions)

9 years agoFix bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte value of...
Stanislav Malyshev [Sat, 29 Aug 2015 05:25:41 +0000 (22:25 -0700)]
Fix bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte value of 32 bytes)

9 years agoMore fixes for bug #70219
Stanislav Malyshev [Sat, 29 Aug 2015 04:50:21 +0000 (21:50 -0700)]
More fixes for bug #70219

9 years agofix dir separator in test
Anatol Belski [Fri, 28 Aug 2015 09:39:26 +0000 (11:39 +0200)]
fix dir separator in test

9 years agofix path separator in test
Anatol Belski [Fri, 28 Aug 2015 09:38:16 +0000 (11:38 +0200)]
fix path separator in test

9 years agofix test
Anatol Belski [Fri, 28 Aug 2015 09:29:38 +0000 (11:29 +0200)]
fix test

9 years agoFix NEWS indentation.
Adam Harvey [Thu, 27 Aug 2015 23:00:36 +0000 (16:00 -0700)]
Fix NEWS indentation.

9 years agoDon't detect FreeBSD 10 as FreeBSD 1 in libtool.m4.
Adam Harvey [Thu, 27 Aug 2015 22:59:59 +0000 (15:59 -0700)]
Don't detect FreeBSD 10 as FreeBSD 1 in libtool.m4.

Fixes bug #70370 (Bundled libtool.m4 doesn't handle FreeBSD 10 when building
extensions).

9 years agoUpdate NEWS with info about bug #55259
Jakub Zelenka [Thu, 27 Aug 2015 20:37:59 +0000 (21:37 +0100)]
Update NEWS with info about bug #55259

9 years agoMerge branch 'PHP-5.4.45' into PHP-5.5.29
Stanislav Malyshev [Wed, 26 Aug 2015 06:08:49 +0000 (23:08 -0700)]
Merge branch 'PHP-5.4.45' into PHP-5.5.29

* PHP-5.4.45:
  Fix bug #70219 (Use after free vulnerability in session deserializer)
  Fix for bug #69782
  5.4.45 next

Conflicts:
configure.in
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re
main/php_version.h

9 years agoFix bug #55259 (openssl extension does not get the DH parameters from DH key resource)
Jakub Zelenka [Tue, 25 Aug 2015 19:26:11 +0000 (20:26 +0100)]
Fix bug #55259 (openssl extension does not get the DH parameters from DH key resource)

9 years agoupdated NEWS
Christoph M. Becker [Mon, 24 Aug 2015 21:05:18 +0000 (23:05 +0200)]
updated NEWS

9 years agoFix #67131: setcookie() conditional for empty values not met
Christoph M. Becker [Mon, 24 Aug 2015 21:03:50 +0000 (23:03 +0200)]
Fix #67131: setcookie() conditional for empty values not met

PHP applies a workaround for old MSIE where setting an empty cookie value would
not delete the cookie. This workaround is only triggered if an empty string (or
a value that converts to an empty string) is actually given as $value parameter
of setcookie. If the $value parameter is omitted, an empty cookie value is
sent. This commit fixes the inconsistent behavior.

9 years agoFix bug #70219 (Use after free vulnerability in session deserializer)
Stanislav Malyshev [Sun, 23 Aug 2015 20:27:59 +0000 (13:27 -0700)]
Fix bug #70219 (Use after free vulnerability in session deserializer)

9 years agoFix bug ##70284 (Use after free vulnerability in unserialize() with GMP)
Stanislav Malyshev [Sun, 23 Aug 2015 20:46:19 +0000 (13:46 -0700)]
Fix bug ##70284 (Use after free vulnerability in unserialize() with GMP)

9 years agofix test
Anatol Belski [Sun, 23 Aug 2015 11:06:51 +0000 (13:06 +0200)]
fix test

backport from master

9 years agofix test
Anatol Belski [Sun, 23 Aug 2015 11:06:00 +0000 (13:06 +0200)]
fix test

backport from master

9 years agofix test
Anatol Belski [Sun, 23 Aug 2015 11:04:36 +0000 (13:04 +0200)]
fix test

9 years agofix test
Anatol Belski [Sun, 23 Aug 2015 11:03:26 +0000 (13:03 +0200)]
fix test

backported from master

9 years agoFix phpdbg_break_next()
Bob Weinand [Sun, 23 Aug 2015 11:07:14 +0000 (12:07 +0100)]
Fix phpdbg_break_next()

9 years agofix tests
Anatol Belski [Fri, 21 Aug 2015 13:13:39 +0000 (15:13 +0200)]
fix tests

9 years agofix dir separator
Anatol Belski [Fri, 21 Aug 2015 12:08:33 +0000 (14:08 +0200)]
fix dir separator

9 years agofix dir separator in test
Anatol Belski [Fri, 21 Aug 2015 12:05:58 +0000 (14:05 +0200)]
fix dir separator in test

9 years agofix dir separator in test
Anatol Belski [Fri, 21 Aug 2015 12:04:08 +0000 (14:04 +0200)]
fix dir separator in test

9 years ago5.6.14 next
Ferenc Kovacs [Thu, 20 Aug 2015 07:56:47 +0000 (09:56 +0200)]
5.6.14 next

9 years agoupdated NEWS
Christoph M. Becker [Wed, 19 Aug 2015 14:25:59 +0000 (16:25 +0200)]
updated NEWS

9 years agoFix #70303: Incorrect constructor reflection for ArrayObject
Christoph M. Becker [Wed, 19 Aug 2015 14:22:04 +0000 (16:22 +0200)]
Fix #70303: Incorrect constructor reflection for ArrayObject

The first parameter of ArrayObject::__construct() is optional. Reflection
should reflect this.

9 years agoFixed bug #70290 (Null pointer deref (segfault) in spl_autoload via ob_start)
Xinchen Hui [Wed, 19 Aug 2015 10:41:28 +0000 (18:41 +0800)]
Fixed bug #70290 (Null pointer deref (segfault) in spl_autoload via ob_start)

9 years agoFix #67604: The built windows documention refers to nonexistent dll
Christoph M. Becker [Tue, 18 Aug 2015 19:21:28 +0000 (21:21 +0200)]
Fix #67604: The built windows documention refers to nonexistent dll

Since quite a while the Windows builds ship with php5apache2_4.dll, but not
with other server modules. We fix some out-dated info in install.txt.

9 years agoMerge branch 'pull-request/1477' into PHP-5.6
Côme Bernigaud [Tue, 18 Aug 2015 15:17:28 +0000 (17:17 +0200)]
Merge branch 'pull-request/1477' into PHP-5.6

* pull-request/1477:
  Patch from Rainer Jung to provide Solaris LDAP support

9 years agoPatch from Rainer Jung to provide Solaris LDAP support
Côme Bernigaud [Tue, 18 Aug 2015 14:52:44 +0000 (16:52 +0200)]
Patch from Rainer Jung to provide Solaris LDAP support

9 years agoupdated NEWS
Christoph M. Becker [Mon, 17 Aug 2015 15:27:13 +0000 (17:27 +0200)]
updated NEWS

9 years agoFix #70277: new DateTimeZone($foo) is ignoring text after null byte
Christoph M. Becker [Mon, 17 Aug 2015 13:58:37 +0000 (15:58 +0200)]
Fix #70277: new DateTimeZone($foo) is ignoring text after null byte

The DateTimeZone constructors are not binary safe. They're parsing the timezone
as string, but discard the length when calling timezone_initialize(). This
patch adds a tz_len parameter and a respective check to timezone_initialize().

9 years agoFix for bug #69782
Stanislav Malyshev [Mon, 17 Aug 2015 00:16:15 +0000 (17:16 -0700)]
Fix for bug #69782

9 years agoFixed sorting order
Derick Rethans [Sun, 16 Aug 2015 20:26:11 +0000 (21:26 +0100)]
Fixed sorting order

It needs to match the strcasecmp in parse_tz.c.

9 years agoUpdated NEWS for #70157
Tjerk Meesters [Sat, 15 Aug 2015 07:13:01 +0000 (15:13 +0800)]
Updated NEWS for #70157

9 years agoMerge branch 'bug70157' into PHP-5.6
Tjerk Meesters [Sat, 15 Aug 2015 07:11:31 +0000 (15:11 +0800)]
Merge branch 'bug70157' into PHP-5.6

* bug70157:
  Fixed #70157 parse_ini_string() segmentation fault with INI_SCANNER_TYPED

9 years agoFixed #70157 parse_ini_string() segmentation fault with INI_SCANNER_TYPED
Tjerk Meesters [Sat, 15 Aug 2015 06:44:07 +0000 (14:44 +0800)]
Fixed #70157 parse_ini_string() segmentation fault with INI_SCANNER_TYPED

9 years agofixed wrong params in proto
Christoph M. Becker [Sat, 15 Aug 2015 00:23:56 +0000 (02:23 +0200)]
fixed wrong params in proto