summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'RELEASE_1_3b3'.RELEASE_1_3b3SVN Migration2003-10-201969-525173/+0
|
* Fix compiler warningsMoriyoshi Koizumi2003-10-201-1/+1
|
* Fixed bug #25918 (Possible crash in mime_content_type()).Ilia Alshanetsky2003-10-201-3/+2
|
* Fixed bug #25923 (mail() modifies the to & subject arguments).Ilia Alshanetsky2003-10-201-14/+25
|
* fix the stat check in stream openShane Caraveo2003-10-201-3/+20
| | | | | addref to the stream context
* Fixed bug #25895 (Incorrect detection of safe_mode limited ini options)Ilia Alshanetsky2003-10-201-1/+1
|
* add generic default error handling rather than the default stderrRob Richards2003-10-191-0/+24
|
* unescape filepath which libxml excapesRob Richards2003-10-191-2/+12
|
* add global init/shutdown functions for libxml. this is required asShane Caraveo2003-10-195-26/+58
| | | | | | shutdown is not safe to call multiple times, and to make streams work correctly some init stuff has to happen in a specific order
* Add libxml extension for common code that is needed to be shared betweenShane Caraveo2003-10-194-0/+308
| | | | | | | | | | | | various xml extensions. currently the only implemented support is the addition of the streams support for libxml. One new function, libxml_set_streams_context, which allows a streams context to bet set prior to loading or writing documents. This works transparently with any extension that uses libxml. All ini settings that effect streams will also now effect the loading and writing of xml documents. TODO: linux support, not sure if config.m4 will work right.
* make file uri's work with streamsShane Caraveo2003-10-192-0/+2
|
* make parse_url work correctly for file uri's on windows, such asShane Caraveo2003-10-191-0/+6
| | | | | file:///c:/somepath/somefile.txt
* Fix class/iterator relationship & handlingMarcus Boerger2003-10-181-32/+23
|
* bah. does it really make any difference where rewind lives in the struct!?Wez Furlong2003-10-181-2/+2
|
* fix cruft from previous incarnation of the iteratorsWez Furlong2003-10-171-2/+3
|
* add com iterator supportWez Furlong2003-10-173-0/+184
|
* Show if a class/object is iterateableMarcus Boerger2003-10-171-0/+18
|
* - Make use of engine iteratorsMarcus Boerger2003-10-172-2/+239
|
* The sqlite classes need to be finalMarcus Boerger2003-10-171-0/+1
|
* Fix showing final/abstract for classesMarcus Boerger2003-10-171-2/+2
|
* pre/hasprev have nothing to do with iterationMarcus Boerger2003-10-171-2/+2
|
* Fixed formatting issues (patch by: Joe Orton)Ilia Alshanetsky2003-10-172-6/+6
|
* Do not strip trailing spaces.Ilia Alshanetsky2003-10-161-3/+2
|
* Fixed bug #25777 (Do not rtrim() of text fields fetched from mssql)Ilia Alshanetsky2003-10-151-0/+2
|
* MFB Fix for #25825Wez Furlong2003-10-151-1/+9
|
* fix for dereferncing null pointer (mfladischer@gmx.net)George Schlossnagle2003-10-151-1/+6
|
* - limit writing of field data to field len + 1Uwe Steinmann2003-10-141-3/+3
| | | | | | This fixed many memory overrun errors which appeared in several scripts when writing a record.
* unintialized variable.Wez Furlong2003-10-131-1/+1
| | | | | Patch by Joe Orton
* Fix unintialized variable.Wez Furlong2003-10-131-1/+1
| | | | | Patch by Joe Orton.
* - Email address changeDerick Rethans2003-10-132-2/+2
|
* Fixed bug #25800 (parse_url() could not parse urls with empty port).Ilia Alshanetsky2003-10-132-6/+40
|
* Remove sendmail patch check.Ilia Alshanetsky2003-10-131-25/+0
|
* Fix possible segfault (this one came up when a method could not be found).Wez Furlong2003-10-132-2/+6
| | | | | | Add a couple of headers used by another file that is not yet ready to commit.
* rolling back fix for 23463. The "fix" broke more than it fixed (see bug 25558)Vlad Krupin2003-10-121-4/+0
|
* New array functions for doing intersection of arrays that are complementaryAndrey Hristov2003-10-094-27/+804
| | | | | | | to array_*diff* family of functions. Namely array_uintersect(), array_uintersect_assoc(), array_intersect_uassoc() and array_uintersect_uassoc(). Test case is also included. #docs and news entry later.
* add the valid xml testShane Caraveo2003-10-091-0/+8
|
* add a DTD exampleShane Caraveo2003-10-093-0/+34
|
* And this EOF flag...Wez Furlong2003-10-081-3/+2
|
* - Fixed bug #25780 (ext/session: invalid session.cookie_lifetime causes ↵foobar2003-10-081-4/+8
| | | | crash in win32).
* Implement stream_get_contents, which is somewhat akin to file_get_contents,Wez Furlong2003-10-083-0/+34
| | | | | except that it works on an already opened stream.
* Oops..Moriyoshi Koizumi2003-10-081-1/+1
|
* Better fix for bug #25758Moriyoshi Koizumi2003-10-081-1/+1
|
* Fixed bug #25758 (var_export does not escape ' & \ inside array keys)Ilia Alshanetsky2003-10-082-1/+19
|
* A much better fix for moniker based COM object creation.Wez Furlong2003-10-071-36/+60
| | | | | | | We now support binding monikers to remote machines. However, MSDN docs indicate that this isn't yet implemented as of Win2000.
* Fix cast callbacksZeev Suraski2003-10-072-6/+12
|
* - Fixed bug #18534 (ifx_close() leaves open session)Corne' Cornelius2003-10-071-14/+48
| | | | | - (ifx_do_close) Added
* Cleaned up previous patch.Ilia Alshanetsky2003-10-071-9/+6
|
* - Fixed bug #25764 (ldap_get_option() crashes when called with unbinded ldap ↵foobar2003-10-061-4/+11
| | | | link)
* some namespace fixesRob Richards2003-10-063-30/+35
| | | | | fix compiler warning
* potential fix for #25759, although it will need further review.Wez Furlong2003-10-061-1/+4
|