]> granicus.if.org Git - php/log
php
20 years agoFix prototypes: Reflection_* -> Reflection*.
Sebastian Bergmann [Mon, 19 Jul 2004 19:17:32 +0000 (19:17 +0000)]
Fix prototypes: Reflection_* -> Reflection*.

20 years agoMake ReflectionClass::getMethod() and ReflectionClass::getProperty() raise an Reflect...
Sebastian Bergmann [Mon, 19 Jul 2004 19:14:10 +0000 (19:14 +0000)]
Make ReflectionClass::getMethod() and ReflectionClass::getProperty() raise an ReflectionException instead of returning NULL on failure.

20 years agoDo not use contracted forms.
Sebastian Bergmann [Mon, 19 Jul 2004 19:02:11 +0000 (19:02 +0000)]
Do not use contracted forms.

20 years ago- Fix test name
Moriyoshi Koizumi [Mon, 19 Jul 2004 18:49:20 +0000 (18:49 +0000)]
- Fix test name

20 years ago- Oops, actual PR # is 29119, not 29199...
Moriyoshi Koizumi [Mon, 19 Jul 2004 17:51:41 +0000 (17:51 +0000)]
- Oops, actual PR # is 29119, not 29199...

20 years ago- Fix bug #29199 (html_entity_decode() misbehaves with UTF-8)
Moriyoshi Koizumi [Mon, 19 Jul 2004 17:46:30 +0000 (17:46 +0000)]
- Fix bug #29199 (html_entity_decode() misbehaves with UTF-8)

20 years agoexport INI parser
Stanislav Malyshev [Mon, 19 Jul 2004 16:32:24 +0000 (16:32 +0000)]
export INI parser

20 years agoFixed bug #28985 (__getTypes() returning nothing on complex WSDL).
Dmitry Stogov [Mon, 19 Jul 2004 14:55:35 +0000 (14:55 +0000)]
Fixed bug #28985 (__getTypes() returning nothing on complex WSDL).

20 years agofix for empty_string changes.
Wez Furlong [Mon, 19 Jul 2004 14:40:46 +0000 (14:40 +0000)]
fix for empty_string changes.
Don't forget to allocate bytes for NUL terminators

20 years ago__set and __get will be called not only when variable doesn't exist but also when...
Stanislav Malyshev [Mon, 19 Jul 2004 14:26:53 +0000 (14:26 +0000)]
__set and __get will be called not only when variable doesn't exist but also when it's
invisible

20 years ago- Bump API number due to empty_string change
Andi Gutmans [Mon, 19 Jul 2004 14:19:21 +0000 (14:19 +0000)]
- Bump API number due to empty_string change

20 years agoFixed bugs #29109 and #29236. (WSDL cache failure)
Dmitry Stogov [Mon, 19 Jul 2004 13:58:10 +0000 (13:58 +0000)]
Fixed bugs #29109 and #29236. (WSDL cache failure)

20 years agoPossible fix for #29258 (unverified)
Wez Furlong [Mon, 19 Jul 2004 13:39:57 +0000 (13:39 +0000)]
Possible fix for #29258 (unverified)
win32 people, please test (I have no working win32 build env right now)

20 years agoFixed bug #29061 (soap extension segfaults).
Dmitry Stogov [Mon, 19 Jul 2004 12:53:29 +0000 (12:53 +0000)]
Fixed bug #29061 (soap extension segfaults).

20 years agoFixed memory leak (related to new implementation of empty strings)
Dmitry Stogov [Mon, 19 Jul 2004 11:38:40 +0000 (11:38 +0000)]
Fixed memory leak (related to new implementation of empty strings)

20 years agoImplement empty-string-to-null conversion option for oracle compat.
Wez Furlong [Mon, 19 Jul 2004 09:35:36 +0000 (09:35 +0000)]
Implement empty-string-to-null conversion option for oracle compat.
This can be enabled using:
$dbh->setAttribute(PDO_ATTR_ORACLE_NULLS, true);

20 years ago- Fix a bug in iconv stream filter that prevents pending buckets from being
Moriyoshi Koizumi [Mon, 19 Jul 2004 08:34:18 +0000 (08:34 +0000)]
- Fix a bug in iconv stream filter that prevents pending buckets from being
  processed on flush operation (same issue pollita fixed several days ago).

20 years agofix build
Antony Dovgal [Mon, 19 Jul 2004 07:35:41 +0000 (07:35 +0000)]
fix build

20 years ago- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
Andi Gutmans [Mon, 19 Jul 2004 07:19:50 +0000 (07:19 +0000)]
- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
  used to return "" and not bool(false). It's not worth keeping it because
  STR_FREE() and zval_dtor() always have to check for it and it slows down
  the general case. In addition, it seems that empty_string has been abused
  quite a lot, and was used not only for setting zval's but generally in
  PHP code instead of "", which wasn't the intention. Last but not least,
  nuking empty_string should improve stability as I doubt every place
  correctly checked if they are not mistakenly erealloc()'ing it or
  calling efree() on it.
  NOTE: Some code is probably broken. Each extension maintainer should
  check and see that my changes are OK. Also, I haven't had time to touch
  PECL yet. Will try and do it tomorrow.

20 years ago- Fix VPATH build. (patch by Joe Orton)
Moriyoshi Koizumi [Mon, 19 Jul 2004 05:07:40 +0000 (05:07 +0000)]
- Fix VPATH build. (patch by Joe Orton)

20 years ago- Rename php_compat.h to php_onig_compat.h to avoid name conflict.
Moriyoshi Koizumi [Mon, 19 Jul 2004 05:04:33 +0000 (05:04 +0000)]
- Rename php_compat.h to php_onig_compat.h to avoid name conflict.
  (reported by Joe Orton, thanks.)

20 years agoChangeLog update
<changelog@php.net> [Mon, 19 Jul 2004 00:35:14 +0000 (00:35 +0000)]
ChangeLog update

20 years agoFixed bug #28633 (sprintf incorrectly adding padding to floats).
Ilia Alshanetsky [Sun, 18 Jul 2004 17:27:49 +0000 (17:27 +0000)]
Fixed bug #28633 (sprintf incorrectly adding padding to floats).

20 years agoUpdate
Marcus Boerger [Sun, 18 Jul 2004 14:04:36 +0000 (14:04 +0000)]
Update

20 years ago- DOS 2 UNIX
Marcus Boerger [Sun, 18 Jul 2004 14:01:54 +0000 (14:01 +0000)]
- DOS 2 UNIX

20 years agoadd appendXML() to DOMFragment (chregu)
Rob Richards [Sun, 18 Jul 2004 13:47:44 +0000 (13:47 +0000)]
add appendXML() to DOMFragment (chregu)

20 years agoUpdate
Marcus Boerger [Sun, 18 Jul 2004 13:37:23 +0000 (13:37 +0000)]
Update

20 years agonot safe for persistent streams
Wez Furlong [Sun, 18 Jul 2004 13:23:40 +0000 (13:23 +0000)]
not safe for persistent streams

20 years agoMFB: enable exslt support for win32 builds
Rob Richards [Sun, 18 Jul 2004 13:23:33 +0000 (13:23 +0000)]
MFB: enable exslt support for win32 builds
WS fixes for exslt tests

20 years agoMFB: add missing optional value param to createElementNS (chregu)
Rob Richards [Sun, 18 Jul 2004 13:16:15 +0000 (13:16 +0000)]
MFB: add missing optional value param to createElementNS (chregu)

20 years agoremove this entry
Marcus Boerger [Sun, 18 Jul 2004 12:08:35 +0000 (12:08 +0000)]
remove this entry

20 years agoImplement extension load-order deps.
Wez Furlong [Sun, 18 Jul 2004 12:03:51 +0000 (12:03 +0000)]
Implement extension load-order deps.

20 years agoMFB: Fixed bug #29221 (Segfault using DOM ownerDocument in a PHP object)
Rob Richards [Sun, 18 Jul 2004 11:45:12 +0000 (11:45 +0000)]
MFB: Fixed bug #29221 (Segfault using DOM ownerDocument in a PHP object)

20 years agoAdd support for negative values of limit of explode(). If limit is negative
Andrey Hristov [Sun, 18 Jul 2004 11:34:28 +0000 (11:34 +0000)]
Add support for negative values of limit of explode(). If limit is negative
then all components are returned except the last abs(limit) ones.

20 years ago- A Bug #29147 was fixed. Thanks to Antony Dovgal <tony2001 at phpclub.net>
Sergey Kartashoff [Sun, 18 Jul 2004 11:18:04 +0000 (11:18 +0000)]
- A Bug #29147 was fixed. Thanks to Antony Dovgal <tony2001 at phpclub.net>
  for his patch.

20 years agotouch to avoid weird implicit makefile rule
Wez Furlong [Sun, 18 Jul 2004 10:34:12 +0000 (10:34 +0000)]
touch to avoid weird implicit makefile rule

20 years agodon't allocate 0 bytes here either
Wez Furlong [Sun, 18 Jul 2004 09:55:46 +0000 (09:55 +0000)]
don't allocate 0 bytes here either

20 years agoNo point allocating 0 bytes
Wez Furlong [Sun, 18 Jul 2004 09:55:02 +0000 (09:55 +0000)]
No point allocating 0 bytes

20 years agoChangeLog update
<changelog@php.net> [Sun, 18 Jul 2004 00:33:38 +0000 (00:33 +0000)]
ChangeLog update

20 years ago- request_dtor() should be called if a fatal error occurs during activation
Moriyoshi Koizumi [Sat, 17 Jul 2004 21:29:50 +0000 (21:29 +0000)]
- request_dtor() should be called if a fatal error occurs during activation
  phase.

20 years agofixed paraenthesis warning in mysql_stmt_attr_set/get
Georg Richter [Sat, 17 Jul 2004 10:48:28 +0000 (10:48 +0000)]
fixed paraenthesis warning in mysql_stmt_attr_set/get

20 years agoChangeLog update
<changelog@php.net> [Sat, 17 Jul 2004 00:32:34 +0000 (00:32 +0000)]
ChangeLog update

20 years agoUpdate windows build files for filter support
Sara Golemon [Sat, 17 Jul 2004 00:21:04 +0000 (00:21 +0000)]
Update windows build files for filter support

20 years agoAdd zlib stream filter support
Sara Golemon [Sat, 17 Jul 2004 00:05:31 +0000 (00:05 +0000)]
Add zlib stream filter support

20 years agoconvert.* filters not consuming buckets_in on PSFS_FLUSH_*
Sara Golemon [Fri, 16 Jul 2004 23:40:21 +0000 (23:40 +0000)]
convert.* filters not consuming buckets_in on PSFS_FLUSH_*

20 years agoNetWare specific openssl build file
Anantha Kesari H Y [Fri, 16 Jul 2004 08:59:24 +0000 (08:59 +0000)]
NetWare specific openssl build file

20 years ago(IMO) Better NEWS entry for true/false/null implementation change.
Sebastian Bergmann [Fri, 16 Jul 2004 07:31:34 +0000 (07:31 +0000)]
(IMO) Better NEWS entry for true/false/null implementation change.

20 years agoCorrect version
Marcus Boerger [Fri, 16 Jul 2004 07:17:51 +0000 (07:17 +0000)]
Correct version

20 years agoBFN
Marcus Boerger [Fri, 16 Jul 2004 07:16:53 +0000 (07:16 +0000)]
BFN

20 years ago- Speed up by making null/false/true reserved word which allows to drop
Marcus Boerger [Fri, 16 Jul 2004 06:50:57 +0000 (06:50 +0000)]
- Speed up by making null/false/true reserved word which allows to drop
  an opcode (FETCH_CONSTANT) for every usage.

20 years agoBugfix #28464 catch() does not catch exceptions by interfaces
Marcus Boerger [Fri, 16 Jul 2004 06:39:50 +0000 (06:39 +0000)]
Bugfix #28464 catch() does not catch exceptions by interfaces

20 years agoMFB: Fixed bug #28800 (strings beginning with "inf" improperly converted).
Ilia Alshanetsky [Fri, 16 Jul 2004 02:03:25 +0000 (02:03 +0000)]
MFB: Fixed bug #28800 (strings beginning with "inf" improperly converted).

20 years agoChangeLog update
<changelog@php.net> [Fri, 16 Jul 2004 00:33:02 +0000 (00:33 +0000)]
ChangeLog update

20 years ago- Improve performance of zend_alloc by stopping the size from being a bit
Andi Gutmans [Thu, 15 Jul 2004 22:59:54 +0000 (22:59 +0000)]
- Improve performance of zend_alloc by stopping the size from being a bit
- field.

20 years agoFix sqlite build
Zeev Suraski [Thu, 15 Jul 2004 22:34:45 +0000 (22:34 +0000)]
Fix sqlite build

20 years ago- Use ErrorException instead of Exception
Marcus Boerger [Thu, 15 Jul 2004 22:22:06 +0000 (22:22 +0000)]
- Use ErrorException instead of Exception

20 years ago- Add new class ErrorException to encapsulate errors in exceptions
Marcus Boerger [Thu, 15 Jul 2004 22:21:36 +0000 (22:21 +0000)]
- Add new class ErrorException to encapsulate errors in exceptions

20 years agoApply the fix
Marcus Boerger [Thu, 15 Jul 2004 22:17:55 +0000 (22:17 +0000)]
Apply the fix

20 years ago- Fix prototype
Marcus Boerger [Thu, 15 Jul 2004 19:41:22 +0000 (19:41 +0000)]
- Fix prototype

20 years agoSynch comments
Marcus Boerger [Thu, 15 Jul 2004 19:09:37 +0000 (19:09 +0000)]
Synch comments

20 years agoBug 29058 (patch submitted by bug reporter)
Dan Kalowsky [Thu, 15 Jul 2004 15:09:12 +0000 (15:09 +0000)]
Bug 29058 (patch submitted by bug reporter)

20 years agoTest for bug 26737:
Magnus M��tt� [Thu, 15 Jul 2004 11:52:04 +0000 (11:52 +0000)]
Test for bug 26737:
Protected and private variables are not saved on serialization
when a user defined __sleep is used.

20 years agofix #29012 (Potential race during first connection) thanks to cjbj at hotmail dot com
Antony Dovgal [Thu, 15 Jul 2004 11:00:14 +0000 (11:00 +0000)]
fix #29012 (Potential race during first connection) thanks to cjbj at hotmail dot com

20 years agoFixed Bug #29075 (strnatcmp() incorrectly handles whitespace).
Ilia Alshanetsky [Thu, 15 Jul 2004 01:26:03 +0000 (01:26 +0000)]
Fixed Bug #29075 (strnatcmp() incorrectly handles whitespace).

# Original Patch by: curt@php.net

20 years agoChangeLog update
<changelog@php.net> [Thu, 15 Jul 2004 00:33:10 +0000 (00:33 +0000)]
ChangeLog update

20 years agoMade php -m output sorted case-insensitevly
Edin Kadribasic [Wed, 14 Jul 2004 22:30:29 +0000 (22:30 +0000)]
Made php -m output sorted case-insensitevly

20 years agosame bug.
Stefan Esser [Wed, 14 Jul 2004 09:55:24 +0000 (09:55 +0000)]
same bug.

20 years ago- Fixed text.
Derick Rethans [Wed, 14 Jul 2004 09:54:02 +0000 (09:54 +0000)]
- Fixed text.

20 years agoSecurity Fix broken! Destroyed Basic auth. Blame: me
Stefan Esser [Wed, 14 Jul 2004 09:43:26 +0000 (09:43 +0000)]
Security Fix broken! Destroyed Basic auth. Blame: me
4.3.x not affected

20 years agobe consistent with write_dimension
Stanislav Malyshev [Wed, 14 Jul 2004 09:04:13 +0000 (09:04 +0000)]
be consistent with write_dimension

20 years agofix #28957
Stanislav Malyshev [Wed, 14 Jul 2004 09:01:58 +0000 (09:01 +0000)]
fix #28957

20 years agoChanging the Tidy version to 2.0
John Coggeshall [Wed, 14 Jul 2004 02:41:53 +0000 (02:41 +0000)]
Changing the Tidy version to 2.0

20 years agoChangeLog update
<changelog@php.net> [Wed, 14 Jul 2004 00:33:30 +0000 (00:33 +0000)]
ChangeLog update

20 years agoBugfix# 28829 bcmath values for 0, 1, and 2 initialized/freed at wrong time for threa...
Sara Golemon [Wed, 14 Jul 2004 00:14:43 +0000 (00:14 +0000)]
Bugfix# 28829 bcmath values for 0, 1, and 2 initialized/freed at wrong time for threaded sapis.

20 years agoAdd {{{ proto's
Zeev Suraski [Tue, 13 Jul 2004 20:41:55 +0000 (20:41 +0000)]
Add {{{ proto's

20 years ago- 5.0.1-dev
Andi Gutmans [Tue, 13 Jul 2004 19:56:49 +0000 (19:56 +0000)]
- 5.0.1-dev

20 years agoBugfix #29116 Zend constant warning uses memory after free (jdolecek at NetBSD dot...
Marcus Boerger [Tue, 13 Jul 2004 19:22:11 +0000 (19:22 +0000)]
Bugfix #29116 Zend constant warning uses memory after free (jdolecek at NetBSD dot org)

20 years ago- Roll PHP 5.0.0
Andi Gutmans [Tue, 13 Jul 2004 19:05:31 +0000 (19:05 +0000)]
- Roll PHP 5.0.0

20 years agoadd missing break
Wez Furlong [Tue, 13 Jul 2004 17:14:49 +0000 (17:14 +0000)]
add missing break

20 years agoprototype fixes
Georg Richter [Tue, 13 Jul 2004 17:04:16 +0000 (17:04 +0000)]
prototype fixes

20 years agoinitial xmlwriter code
Rob Richards [Tue, 13 Jul 2004 17:01:30 +0000 (17:01 +0000)]
initial xmlwriter code

20 years agoLooks like Sara forgot to change this too.
Wez Furlong [Tue, 13 Jul 2004 16:34:56 +0000 (16:34 +0000)]
Looks like Sara forgot to change this too.

20 years agochanged mysqli_stmt_reset (returns now bool instead of void)
Georg Richter [Tue, 13 Jul 2004 16:12:28 +0000 (16:12 +0000)]
changed mysqli_stmt_reset (returns now bool instead of void)

20 years agoFixed typo
Stefan Esser [Tue, 13 Jul 2004 11:30:50 +0000 (11:30 +0000)]
Fixed typo

20 years agoremove test dependance on postgres ** this still fails however
Alan Knowles [Tue, 13 Jul 2004 07:20:45 +0000 (07:20 +0000)]
remove test dependance on postgres ** this still fails however

20 years agoensure that test passes on systems without postgres built in.
Alan Knowles [Tue, 13 Jul 2004 07:12:06 +0000 (07:12 +0000)]
ensure that test passes on systems without postgres built in.

20 years agoChangeLog update
<changelog@php.net> [Tue, 13 Jul 2004 00:32:43 +0000 (00:32 +0000)]
ChangeLog update

20 years agoFix file_get_contents() bug...
Wez Furlong [Mon, 12 Jul 2004 20:59:24 +0000 (20:59 +0000)]
Fix file_get_contents() bug...

20 years ago- Initial release
Timm Friebe [Mon, 12 Jul 2004 20:26:53 +0000 (20:26 +0000)]
- Initial release

20 years agoAdded missing constant and correct bound column retrieval. When bound
Ilia Alshanetsky [Mon, 12 Jul 2004 20:12:39 +0000 (20:12 +0000)]
Added missing constant and correct bound column retrieval. When bound
columns are specified only return status (TRUE/FALSE) indicator.

20 years agoFixed a bug that could result in false failed query reporting on
Ilia Alshanetsky [Mon, 12 Jul 2004 20:09:19 +0000 (20:09 +0000)]
Fixed a bug that could result in false failed query reporting on
INSERT/UPDATE/DELETE queries.

20 years agoMissing patch.
Ilia Alshanetsky [Mon, 12 Jul 2004 18:49:47 +0000 (18:49 +0000)]
Missing patch.

20 years agoFixed bug #28999 (fixed behaviour of exec() to work as it did in 4.X).
Ilia Alshanetsky [Mon, 12 Jul 2004 18:48:30 +0000 (18:48 +0000)]
Fixed bug #28999 (fixed behaviour of exec() to work as it did in 4.X).

20 years agoFixed bug #29086 & #28064 (PHP crashes on extremly long scripts).
Ilia Alshanetsky [Mon, 12 Jul 2004 17:47:29 +0000 (17:47 +0000)]
Fixed bug #29086 & #28064 (PHP crashes on extremly long scripts).

20 years agoTouch the file so that build system does not try to rebuild it.
Ilia Alshanetsky [Mon, 12 Jul 2004 17:44:40 +0000 (17:44 +0000)]
Touch the file so that build system does not try to rebuild it.

20 years ago- Convert zend_class_entry -> zend_class_entry *
Andi Gutmans [Mon, 12 Jul 2004 16:38:45 +0000 (16:38 +0000)]
- Convert zend_class_entry -> zend_class_entry *

20 years agoimplement the clone code for the XSLTProcessor object and fix #29108
Christian Stocker [Mon, 12 Jul 2004 13:04:01 +0000 (13:04 +0000)]
implement the clone code for the XSLTProcessor object and fix #29108
"xslt segfaults when ze1_compatibility_mode is on" (By Rob Richards)

20 years agofix #28978 (multiple OCIBindByName on the same placeholder eats memory)
Antony Dovgal [Mon, 12 Jul 2004 07:40:05 +0000 (07:40 +0000)]
fix #28978 (multiple OCIBindByName on the same placeholder eats memory)

20 years agoChangeLog update
<changelog@php.net> [Mon, 12 Jul 2004 00:32:48 +0000 (00:32 +0000)]
ChangeLog update

20 years agoreorder + add
Andrey Hristov [Sun, 11 Jul 2004 21:41:33 +0000 (21:41 +0000)]
reorder + add