summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #29061 (soap extension segfaults).Dmitry Stogov2004-07-194-2/+64
|
* Fixed memory leak (related to new implementation of empty strings)Dmitry Stogov2004-07-191-4/+0
|
* Implement empty-string-to-null conversion option for oracle compat.Wez Furlong2004-07-194-2/+12
| | | | | | This can be enabled using: $dbh->setAttribute(PDO_ATTR_ORACLE_NULLS, true);
* - Fix a bug in iconv stream filter that prevents pending buckets from beingMoriyoshi Koizumi2004-07-191-13/+13
| | | | | processed on flush operation (same issue pollita fixed several days ago).
* fix buildAntony Dovgal2004-07-191-1/+1
|
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-1938-124/+96
| | | | | | | | | | | | | | | 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.
* - Fix VPATH build. (patch by Joe Orton)Moriyoshi Koizumi2004-07-191-0/+1
|
* - Rename php_compat.h to php_onig_compat.h to avoid name conflict.Moriyoshi Koizumi2004-07-192-1/+1
| | | | | (reported by Joe Orton, thanks.)
* ChangeLog update2004-07-192-0/+105
|
* Fixed bug #28633 (sprintf incorrectly adding padding to floats).Ilia Alshanetsky2004-07-183-4/+11
|
* UpdateMarcus Boerger2004-07-181-1/+2
|
* - DOS 2 UNIXMarcus Boerger2004-07-180-0/+0
|
* add appendXML() to DOMFragment (chregu)Rob Richards2004-07-182-0/+30
|
* UpdateMarcus Boerger2004-07-181-3/+9
|
* not safe for persistent streamsWez Furlong2004-07-181-1/+6
|
* MFB: enable exslt support for win32 buildsRob Richards2004-07-183-58/+68
| | | | | WS fixes for exslt tests
* MFB: add missing optional value param to createElementNS (chregu)Rob Richards2004-07-181-5/+5
|
* remove this entryMarcus Boerger2004-07-181-4/+0
|
* Implement extension load-order deps.Wez Furlong2004-07-189-4/+133
|
* MFB: Fixed bug #29221 (Segfault using DOM ownerDocument in a PHP object)Rob Richards2004-07-181-1/+1
|
* Add support for negative values of limit of explode(). If limit is negativeAndrey Hristov2004-07-182-1/+93
| | | | | then all components are returned except the last abs(limit) ones.
* - A Bug #29147 was fixed. Thanks to Antony Dovgal <tony2001 at phpclub.net>Sergey Kartashoff2004-07-181-15/+14
| | | | | for his patch.
* touch to avoid weird implicit makefile ruleWez Furlong2004-07-181-1/+1
|
* don't allocate 0 bytes here eitherWez Furlong2004-07-181-8/+14
|
* No point allocating 0 bytesWez Furlong2004-07-181-4/+11
|
* ChangeLog update2004-07-181-0/+32
|
* - request_dtor() should be called if a fatal error occurs during activationMoriyoshi Koizumi2004-07-171-2/+2
| | | | | phase.
* fixed paraenthesis warning in mysql_stmt_attr_set/getGeorg Richter2004-07-171-2/+2
|
* ChangeLog update2004-07-172-0/+85
|
* Update windows build files for filter supportSara Golemon2004-07-172-118/+122
|
* Add zlib stream filter supportSara Golemon2004-07-177-1/+444
|
* convert.* filters not consuming buckets_in on PSFS_FLUSH_*Sara Golemon2004-07-161-69/+71
|
* NetWare specific openssl build fileAnantha Kesari H Y2004-07-161-0/+185
|
* (IMO) Better NEWS entry for true/false/null implementation change.Sebastian Bergmann2004-07-161-1/+2
|
* Correct versionMarcus Boerger2004-07-161-2/+1
|
* BFNMarcus Boerger2004-07-162-2/+2
|
* - Speed up by making null/false/true reserved word which allows to dropMarcus Boerger2004-07-162-0/+22
| | | | | an opcode (FETCH_CONSTANT) for every usage.
* Bugfix #28464 catch() does not catch exceptions by interfacesMarcus Boerger2004-07-161-11/+6
|
* MFB: Fixed bug #28800 (strings beginning with "inf" improperly converted).Ilia Alshanetsky2004-07-162-0/+19
|
* ChangeLog update2004-07-162-0/+78
|
* - Improve performance of zend_alloc by stopping the size from being a bitAndi Gutmans2004-07-152-34/+24
| | | | | - field.
* Fix sqlite buildZeev Suraski2004-07-151-0/+1
|
* - Use ErrorException instead of ExceptionMarcus Boerger2004-07-151-1/+1
|
* - Add new class ErrorException to encapsulate errors in exceptionsMarcus Boerger2004-07-152-17/+98
|
* Apply the fixMarcus Boerger2004-07-151-10/+0
|
* - Fix prototypeMarcus Boerger2004-07-151-1/+1
|
* Synch commentsMarcus Boerger2004-07-152-15/+89
|
* Bug 29058 (patch submitted by bug reporter)Dan Kalowsky2004-07-151-1/+1
|
* Test for bug 26737:Magnus M��tt�2004-07-151-0/+21
| | | | | | Protected and private variables are not saved on serialization when a user defined __sleep is used.
* fix #29012 (Potential race during first connection) thanks to cjbj at ↵Antony Dovgal2004-07-151-2/+2
| | | | hotmail dot com