]> granicus.if.org Git - php/log
php
15 years agoUpgraded bundled sqlite to version 3.6.18.
Ilia Alshanetsky [Tue, 15 Sep 2009 16:54:11 +0000 (16:54 +0000)]
Upgraded bundled sqlite to version 3.6.18.

15 years ago- #49253, add support for libcurl's CERTINFO option
Pierre Joye [Tue, 15 Sep 2009 15:47:06 +0000 (15:47 +0000)]
- #49253, add support for libcurl's CERTINFO option

15 years ago- WS fix (spaces to tabs)
Moriyoshi Koizumi [Tue, 15 Sep 2009 00:09:13 +0000 (00:09 +0000)]
- WS fix (spaces to tabs)

15 years ago- Fix #48746, improve fix to support all possible cases (see latest comment in the...
Pierre Joye [Mon, 14 Sep 2009 18:46:56 +0000 (18:46 +0000)]
- Fix #48746, improve fix to support all possible cases (see latest comment in the report)

15 years agoFixed certificate validation inside php_openssl_apply_verification_policy
Ilia Alshanetsky [Mon, 14 Sep 2009 12:50:30 +0000 (12:50 +0000)]
Fixed certificate validation inside php_openssl_apply_verification_policy

15 years ago- Looks like bug #48697 has already been fixed in RC1.
Moriyoshi Koizumi [Mon, 14 Sep 2009 04:11:29 +0000 (04:11 +0000)]
- Looks like bug #48697 has already been fixed in RC1.

15 years ago- Fixed warnings (Kalle)
Felipe Pena [Sun, 13 Sep 2009 14:42:36 +0000 (14:42 +0000)]
- Fixed warnings (Kalle)

15 years agoFixed test
Ilia Alshanetsky [Sun, 13 Sep 2009 13:14:11 +0000 (13:14 +0000)]
Fixed test

15 years agoAdd missing SKIPIF
andy wharmby [Fri, 11 Sep 2009 21:57:04 +0000 (21:57 +0000)]
Add missing SKIPIF

15 years ago- Fix bug #49536 (mb_detect_encoding() returns incorrect results when strict_mode...
Moriyoshi Koizumi [Fri, 11 Sep 2009 21:26:18 +0000 (21:26 +0000)]
- Fix bug #49536 (mb_detect_encoding() returns incorrect results when strict_mode is turned on.)
  (patch by komura, thanks!)

15 years agoFix for bug #49357 (MySQLi extension fails to recognize POINT (spatial) colums).
Ulf Wendel [Fri, 11 Sep 2009 13:38:47 +0000 (13:38 +0000)]
Fix for bug #49357  (MySQLi extension fails to recognize POINT (spatial) colums).

Do yourself a favour and use mysqlnd. mysqlnd has no isuses here.

If you insist on using the MySQL Client Library (libmysql) I strongly recommend to use mysqli_stmt_store_result() when fetching geometry data using prepared statements. When streaming data, which is the default for prepared statements, ext/mysqli will have to make a guess on the size of the result buffer it needs. The guess is based on a length reported by the MySQL CLient Library (libmysql). The MySQL Client Library reports 4GB (!) for a POINT - a conservative and safe guess. Consequently, ext/mysqli will try to allocate 4GB of RAM. The true (maximum) size of the column is not available before buffering the result on the client using mysqli_stmt_store_result(). If you call mysqli_stmt_store_result(), the result buffers will not get bigger than needed. However, store_result()/buffering is usually not what you want when you ask for prepared statements.

15 years agoStepping back to PHP 5.2.x and earlier logic of allocating even huge pieces of memory...
Ulf Wendel [Fri, 11 Sep 2009 12:28:47 +0000 (12:28 +0000)]
Stepping back to PHP 5.2.x and earlier logic of allocating even huge pieces of memory for large BLOB types to avoid data truncation. This fixes the test failure of 005.phpt when using MySQL Client
Library (libmysql). The test does pass with mysqlnd because mysqlnd does not have any issues here.

15 years agoFixing a crash which must have existed since PHP 5.0. At least the crash can be repro...
Ulf Wendel [Fri, 11 Sep 2009 12:16:56 +0000 (12:16 +0000)]
Fixing a crash which must have existed since PHP 5.0. At least the crash can be reproduced with PHP 5.0.6. The crash happens only when using the MySQL Client Library (libmysql) - it does not happen
when using mysqlnd.

15 years ago- Fix bug #49528 (UTF-16 strings prefixed by BOM wrongly converted).
Moriyoshi Koizumi [Fri, 11 Sep 2009 08:22:19 +0000 (08:22 +0000)]
- Fix bug #49528 (UTF-16 strings prefixed by BOM wrongly converted).

15 years ago- Simplified a bit and fixed possible memory corruption and definate leak.
Jani Taskinen [Thu, 10 Sep 2009 16:19:42 +0000 (16:19 +0000)]
- Simplified a bit and fixed possible memory corruption and definate leak.

15 years ago- Fix skips
Jani Taskinen [Thu, 10 Sep 2009 15:05:49 +0000 (15:05 +0000)]
- Fix skips

15 years ago- Fix build for !win32 systems..
Jani Taskinen [Thu, 10 Sep 2009 13:19:43 +0000 (13:19 +0000)]
- Fix build for !win32 systems..

15 years agoUse getThis() correctly.
Sebastian Bergmann [Thu, 10 Sep 2009 05:15:24 +0000 (05:15 +0000)]
Use getThis() correctly.

15 years agoAdd ReflectionMethod::setAccessible() for invoking non-public methods through the...
Sebastian Bergmann [Thu, 10 Sep 2009 05:04:53 +0000 (05:04 +0000)]
Add ReflectionMethod::setAccessible() for invoking non-public methods through the Reflection API.

15 years agoFixed test
Ilia Alshanetsky [Thu, 10 Sep 2009 02:15:08 +0000 (02:15 +0000)]
Fixed test

15 years ago- Possible fix for bug #49344 on Windows (pdo_mssql fails to connect,throws PDOExcept...
Felipe Pena [Thu, 10 Sep 2009 01:20:42 +0000 (01:20 +0000)]
- Possible fix for bug #49344 on Windows (pdo_mssql fails to connect,throws PDOException SQLSTATE[] (null) (severity 0))

15 years agoAndrey fixed the bug but the test was somewhat borked. Fixing test.
Ulf Wendel [Wed, 9 Sep 2009 18:31:00 +0000 (18:31 +0000)]
Andrey fixed the bug but the test was somewhat borked. Fixing test.

15 years agoSome extra test coverage for http://bugs.php.net/bug.php?id=48754 .
Ulf Wendel [Wed, 9 Sep 2009 17:16:24 +0000 (17:16 +0000)]
Some extra test coverage for http://bugs.php.net/bug.php?id=48754 .

15 years agoTests for http://bugs.php.net/bug.php?id=49357 (libmysql only) . The simple fix sugge...
Ulf Wendel [Wed, 9 Sep 2009 17:10:29 +0000 (17:10 +0000)]
Tests for http://bugs.php.net/bug.php?id=49357 (libmysql only) . The simple fix suggested in the bug system is not good enough, therefore no fix yet.

15 years agoNext attempt to fix http://bugs.php.net/bug.php?id=48745. Patch by Andrey.
Ulf Wendel [Wed, 9 Sep 2009 17:03:03 +0000 (17:03 +0000)]
Next attempt to fix http://bugs.php.net/bug.php?id=48745. Patch by Andrey.

15 years ago- Updated to version 2009.13 (2009m)
Derick Rethans [Tue, 8 Sep 2009 14:03:53 +0000 (14:03 +0000)]
- Updated to version 2009.13 (2009m)

15 years agoThis shouldn't have been in the commit
Kalle Sommer Nielsen [Tue, 8 Sep 2009 01:53:46 +0000 (01:53 +0000)]
This shouldn't have been in the commit

15 years agoExperimental build support for VC10
Kalle Sommer Nielsen [Tue, 8 Sep 2009 01:50:40 +0000 (01:50 +0000)]
Experimental build support for VC10
 - Contains newly introduced compiler warning fixes
 - configure now picks up VC10

15 years agoFixed ext/sockets build
Kalle Sommer Nielsen [Tue, 8 Sep 2009 01:45:25 +0000 (01:45 +0000)]
Fixed ext/sockets build

15 years agoFixed ext/interbase build
Kalle Sommer Nielsen [Tue, 8 Sep 2009 01:44:37 +0000 (01:44 +0000)]
Fixed ext/interbase build

15 years agoFixed tests
Ilia Alshanetsky [Mon, 7 Sep 2009 14:18:46 +0000 (14:18 +0000)]
Fixed tests

15 years agoFixed bug #49470 (FILTER_SANITIZE_EMAIL allows disallowed characters).
Ilia Alshanetsky [Mon, 7 Sep 2009 02:35:25 +0000 (02:35 +0000)]
Fixed bug #49470 (FILTER_SANITIZE_EMAIL allows disallowed characters).

15 years ago- Fixed bug #49483 (preg_replace 'subject' parameter listed as optional)
Felipe Pena [Sun, 6 Sep 2009 17:41:34 +0000 (17:41 +0000)]
- Fixed bug #49483 (preg_replace 'subject' parameter listed as optional)

15 years ago- revert last commit, breaks the build and needs test case(s)
Pierre Joye [Sun, 6 Sep 2009 15:56:58 +0000 (15:56 +0000)]
- revert last commit, breaks the build and needs test case(s)

15 years ago- Fix leaks.
Moriyoshi Koizumi [Sun, 6 Sep 2009 14:43:09 +0000 (14:43 +0000)]
- Fix leaks.

15 years ago- don't hide previous declaration
Pierre Joye [Sat, 5 Sep 2009 21:16:05 +0000 (21:16 +0000)]
- don't hide previous declaration

15 years ago- don't hide early declaration
Pierre Joye [Sat, 5 Sep 2009 19:00:05 +0000 (19:00 +0000)]
- don't hide early declaration

15 years ago- Drop unused var
Felipe Pena [Sat, 5 Sep 2009 18:21:10 +0000 (18:21 +0000)]
- Drop unused var

15 years ago- add test for #48746
Pierre Joye [Sat, 5 Sep 2009 18:10:31 +0000 (18:10 +0000)]
- add test for #48746

15 years ago- useless #ifdef
Pierre Joye [Sat, 5 Sep 2009 17:39:18 +0000 (17:39 +0000)]
- useless #ifdef

15 years ago- fix #49274, filter_var does not accept object without a toString implementation
Pierre Joye [Sat, 5 Sep 2009 17:35:26 +0000 (17:35 +0000)]
- fix #49274, filter_var does not accept object without a toString implementation

15 years ago- Fixed bug #49182 (PHP CGI always outputs the shebang line)
Jani Taskinen [Sat, 5 Sep 2009 17:07:14 +0000 (17:07 +0000)]
- Fixed bug #49182 (PHP CGI always outputs the shebang line)

15 years ago- #49464, fix build
Pierre Joye [Fri, 4 Sep 2009 19:53:39 +0000 (19:53 +0000)]
- #49464, fix build

15 years agoI have no idea. This might or might not fix a bug in some branch. At least it works.
Jani Taskinen [Fri, 4 Sep 2009 11:02:40 +0000 (11:02 +0000)]
I have no idea. This might or might not fix a bug in some branch. At least it works.

15 years ago- Fixed bug #49447 (php engine need to correctly check for socket API
Sriram Natarajan [Fri, 4 Sep 2009 07:59:48 +0000 (07:59 +0000)]
- Fixed bug #49447 (php engine need to correctly check for socket API
  return status on windows). (Sriram Natarajan)

15 years ago- be sure that we use the user token by default (Christian Wenz)
Pierre Joye [Fri, 4 Sep 2009 06:59:08 +0000 (06:59 +0000)]
- be sure that we use the user token by default (Christian Wenz)

15 years ago- #27051, improve fix on xp/2k3
Pierre Joye [Thu, 3 Sep 2009 19:16:17 +0000 (19:16 +0000)]
- #27051, improve fix on xp/2k3

15 years ago- MF53: len includes the NULL already
Pierre Joye [Thu, 3 Sep 2009 19:11:30 +0000 (19:11 +0000)]
- MF53: len includes the NULL already

15 years agoFixed bug #46074 (Bus error during running PHP CLI under IRIX 6.5.30)
Dmitry Stogov [Thu, 3 Sep 2009 14:33:11 +0000 (14:33 +0000)]
Fixed bug #46074 (Bus error during running PHP CLI under IRIX 6.5.30)

15 years agoMake invokeArgs() error messages consistent with invoke().
Sebastian Bergmann [Thu, 3 Sep 2009 14:02:51 +0000 (14:02 +0000)]
Make invokeArgs() error messages consistent with invoke().

15 years ago- Fix sanity check for the color index in imagecolortransparent
Pierre Joye [Thu, 3 Sep 2009 09:45:56 +0000 (09:45 +0000)]
- Fix sanity check for the color index in imagecolortransparent

15 years ago- be sure to get all crt dbg errors in stderr
Pierre Joye [Wed, 2 Sep 2009 20:02:17 +0000 (20:02 +0000)]
- be sure to get all crt dbg errors in stderr

15 years agoFixed return value to comply with tests
Ilia Alshanetsky [Wed, 2 Sep 2009 13:07:44 +0000 (13:07 +0000)]
Fixed return value to comply with tests

15 years ago- #27051, we need the thread token here, not the process
Pierre Joye [Wed, 2 Sep 2009 01:59:17 +0000 (01:59 +0000)]
- #27051, we need the thread token here, not the process

15 years ago- #27051, create process as impersonated user
Pierre Joye [Tue, 1 Sep 2009 22:51:31 +0000 (22:51 +0000)]
- #27051, create process as impersonated user

15 years agoFix build
Kalle Sommer Nielsen [Tue, 1 Sep 2009 20:12:02 +0000 (20:12 +0000)]
Fix build

15 years ago- #48746, revert previous about volume. Fix volume support to allow all mounted point...
Pierre Joye [Tue, 1 Sep 2009 17:50:59 +0000 (17:50 +0000)]
- #48746, revert previous about volume. Fix volume support to allow all mounted points (with or without drives)

15 years ago- #48746, fix regression in readdir/scandir and mounted points or junctions on windows
Pierre Joye [Tue, 1 Sep 2009 17:46:17 +0000 (17:46 +0000)]
- #48746, fix regression in readdir/scandir and mounted points or junctions on windows

15 years agoadd -g along with -O0
Antony Dovgal [Tue, 1 Sep 2009 15:13:02 +0000 (15:13 +0000)]
add -g along with -O0

15 years agoFixes #49428 - Patch by Patrick Allaert
Kalle Sommer Nielsen [Tue, 1 Sep 2009 14:05:00 +0000 (14:05 +0000)]
Fixes #49428 - Patch by Patrick Allaert

15 years agoAdded Tidy basic test for tidy_access_count
Patrick Allaert [Tue, 1 Sep 2009 13:06:52 +0000 (13:06 +0000)]
Added Tidy basic test for tidy_access_count

15 years agoAdded Tidy basic test for tidy_warning_count
Patrick Allaert [Tue, 1 Sep 2009 13:06:31 +0000 (13:06 +0000)]
Added Tidy basic test for tidy_warning_count

15 years agoAdded Tidy basic test for tidy_error_count
Patrick Allaert [Tue, 1 Sep 2009 13:06:16 +0000 (13:06 +0000)]
Added Tidy basic test for tidy_error_count

15 years agoAdded Tidy basic test for tidy_config_count
Patrick Allaert [Tue, 1 Sep 2009 13:05:54 +0000 (13:05 +0000)]
Added Tidy basic test for tidy_config_count

15 years ago- Fixed zlib.deflate compress filter to actually accpet level parameter.
Jani Taskinen [Mon, 31 Aug 2009 21:18:55 +0000 (21:18 +0000)]
- Fixed zlib.deflate compress filter to actually accpet level parameter.

15 years agoadd missing skipifs
Zoe Slattery [Mon, 31 Aug 2009 19:22:29 +0000 (19:22 +0000)]
add missing skipifs

15 years agonuke duplicated tests
Antony Dovgal [Mon, 31 Aug 2009 15:32:39 +0000 (15:32 +0000)]
nuke duplicated tests

15 years agoFixed bug #49361 (wordwrap() wraps incorrectly on end of line boundaries).
Ilia Alshanetsky [Mon, 31 Aug 2009 12:28:46 +0000 (12:28 +0000)]
Fixed bug #49361 (wordwrap() wraps incorrectly on end of line boundaries).

15 years agoexport le_socket from ext/sockets
Antony Dovgal [Mon, 31 Aug 2009 08:41:03 +0000 (08:41 +0000)]
export le_socket from ext/sockets

15 years agoThe last of the 2009 testfest tests
Zoe Slattery [Sun, 30 Aug 2009 18:18:50 +0000 (18:18 +0000)]
The last of the 2009 testfest tests

15 years ago- Fixed leak on error in popen/exec (and related functions)
Pierre Joye [Sun, 30 Aug 2009 17:13:45 +0000 (17:13 +0000)]
- Fixed leak on error in popen/exec (and related functions)

15 years agoBug #49391 ldap.c utilizing deprecated ldap_modify_s
Ilia Alshanetsky [Sun, 30 Aug 2009 15:33:59 +0000 (15:33 +0000)]
Bug #49391 ldap.c utilizing deprecated ldap_modify_s

15 years agoMore tests from 2009 testfest
Zoe Slattery [Sun, 30 Aug 2009 12:19:50 +0000 (12:19 +0000)]
More tests from 2009 testfest

15 years agobc math tests from testfest 2009
Zoe Slattery [Sun, 30 Aug 2009 11:10:20 +0000 (11:10 +0000)]
bc math tests from testfest 2009

15 years agoserver for ftp tests
Zoe Slattery [Sun, 30 Aug 2009 09:31:54 +0000 (09:31 +0000)]
server for ftp tests

15 years agoMore tests from 2009 testfest
Zoe Slattery [Sun, 30 Aug 2009 09:30:13 +0000 (09:30 +0000)]
More tests from 2009 testfest

15 years agoFixed to allow for http etc
Zoe Slattery [Sun, 30 Aug 2009 08:18:53 +0000 (08:18 +0000)]
Fixed to allow for http etc

15 years agofix tests
Antony Dovgal [Sat, 29 Aug 2009 19:18:27 +0000 (19:18 +0000)]
fix tests

15 years ago- Fix #48746, mounted volume support & resolution
Pierre Joye [Sat, 29 Aug 2009 12:21:47 +0000 (12:21 +0000)]
- Fix #48746, mounted volume support & resolution

15 years agoNew basic network function tests. Tested on Windows, Linux and Linux 64 bit
andy wharmby [Fri, 28 Aug 2009 22:46:43 +0000 (22:46 +0000)]
New basic network function tests. Tested on Windows, Linux and Linux 64 bit

15 years agoMore tests from 2009 testfest
Zoe Slattery [Fri, 28 Aug 2009 14:31:19 +0000 (14:31 +0000)]
More tests from 2009 testfest

15 years agoFix for bug#48745
Andrey Hristov [Fri, 28 Aug 2009 09:30:16 +0000 (09:30 +0000)]
Fix for bug#48745
mysqlnd: mysql_num_fields returns wrong column count for mysql_list_fields

15 years ago- fix VC6 build
Pierre Joye [Thu, 27 Aug 2009 14:45:41 +0000 (14:45 +0000)]
- fix VC6 build

15 years agoFixed bug #49027 (mysqli_options() doesn't work when using mysqlnd)
Andrey Hristov [Thu, 27 Aug 2009 13:16:39 +0000 (13:16 +0000)]
Fixed bug #49027 (mysqli_options() doesn't work when using mysqlnd)

15 years agoFix for bug#46614 Extended MySQLi class gives incorrect empty() result
Andrey Hristov [Thu, 27 Aug 2009 12:41:14 +0000 (12:41 +0000)]
Fix for bug#46614 Extended MySQLi class gives incorrect empty() result

15 years agoFix tests. Add missing SKIPIF sections so test do not run when POSIX extension not...
andy wharmby [Thu, 27 Aug 2009 12:21:19 +0000 (12:21 +0000)]
Fix tests. Add missing SKIPIF sections so test do not run when POSIX extension not available.

15 years ago- Fix for #48746, fix mounted volume and junctions when used from vista or later...
Pierre Joye [Thu, 27 Aug 2009 09:39:01 +0000 (09:39 +0000)]
- Fix for #48746, fix mounted volume and junctions when used from vista or later, they are actually prepended with \??\

15 years agoAdded: Tidy basic test for getConfig()
Patrick Allaert [Thu, 27 Aug 2009 08:50:07 +0000 (08:50 +0000)]
Added: Tidy basic test for getConfig()

15 years agoAdded: Tidy test with invalid configuration options
Patrick Allaert [Thu, 27 Aug 2009 08:49:24 +0000 (08:49 +0000)]
Added: Tidy test with invalid configuration options

15 years agoThis needs to be larger to avoid an overflow on the bit-shifting in this function
Rasmus Lerdorf [Thu, 27 Aug 2009 05:05:42 +0000 (05:05 +0000)]
This needs to be larger to avoid an overflow on the bit-shifting in this function

15 years ago- fix #49372, segfault in php_curl_option_url
Pierre Joye [Wed, 26 Aug 2009 22:24:10 +0000 (22:24 +0000)]
- fix #49372, segfault in php_curl_option_url

15 years ago- silent warning (fix for #28038)
Pierre Joye [Wed, 26 Aug 2009 21:59:54 +0000 (21:59 +0000)]
- silent warning (fix for #28038)

15 years ago- fix #48746, regression with file operaiton on path with junctions
Pierre Joye [Wed, 26 Aug 2009 20:44:05 +0000 (20:44 +0000)]
- fix #48746, regression with file operaiton on path with junctions

15 years ago- fix #44683, popen crashes when an invalid mode is passed (works on 2k8/vista/win7)
Pierre Joye [Wed, 26 Aug 2009 19:57:01 +0000 (19:57 +0000)]
- fix #44683, popen crashes when an invalid mode is passed (works on 2k8/vista/win7)

15 years ago- fix build
Pierre Joye [Wed, 26 Aug 2009 19:19:05 +0000 (19:19 +0000)]
- fix build

15 years agoTest from 2009 testfest
Zoe Slattery [Wed, 26 Aug 2009 17:17:58 +0000 (17:17 +0000)]
Test from 2009 testfest

15 years ago- fix test and use __DIR__ as usual
Pierre Joye [Wed, 26 Aug 2009 16:07:05 +0000 (16:07 +0000)]
- fix test and use __DIR__ as usual

15 years agoFixed variable clobbering
Ilia Alshanetsky [Wed, 26 Aug 2009 15:29:06 +0000 (15:29 +0000)]
Fixed variable clobbering

15 years ago- add win32 version
Pierre Joye [Wed, 26 Aug 2009 14:09:45 +0000 (14:09 +0000)]
- add win32 version

15 years agoFixed bug #47273 (Encoding bug in SoapServer->fault)
Dmitry Stogov [Wed, 26 Aug 2009 14:05:48 +0000 (14:05 +0000)]
Fixed bug #47273 (Encoding bug in SoapServer->fault)