Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create tag 'RELEASE_1_3b3'.RELEASE_1_3b3 | SVN Migration | 2003-10-20 | 1969 | -525173/+0 |
| | |||||
* | Fix compiler warnings | Moriyoshi Koizumi | 2003-10-20 | 1 | -1/+1 |
| | |||||
* | Fixed bug #25918 (Possible crash in mime_content_type()). | Ilia Alshanetsky | 2003-10-20 | 1 | -3/+2 |
| | |||||
* | Fixed bug #25923 (mail() modifies the to & subject arguments). | Ilia Alshanetsky | 2003-10-20 | 1 | -14/+25 |
| | |||||
* | fix the stat check in stream open | Shane Caraveo | 2003-10-20 | 1 | -3/+20 |
| | | | | | addref to the stream context | ||||
* | Fixed bug #25895 (Incorrect detection of safe_mode limited ini options) | Ilia Alshanetsky | 2003-10-20 | 1 | -1/+1 |
| | |||||
* | add generic default error handling rather than the default stderr | Rob Richards | 2003-10-19 | 1 | -0/+24 |
| | |||||
* | unescape filepath which libxml excapes | Rob Richards | 2003-10-19 | 1 | -2/+12 |
| | |||||
* | add global init/shutdown functions for libxml. this is required as | Shane Caraveo | 2003-10-19 | 5 | -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 between | Shane Caraveo | 2003-10-19 | 4 | -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 streams | Shane Caraveo | 2003-10-19 | 2 | -0/+2 |
| | |||||
* | make parse_url work correctly for file uri's on windows, such as | Shane Caraveo | 2003-10-19 | 1 | -0/+6 |
| | | | | | file:///c:/somepath/somefile.txt | ||||
* | Fix class/iterator relationship & handling | Marcus Boerger | 2003-10-18 | 1 | -32/+23 |
| | |||||
* | bah. does it really make any difference where rewind lives in the struct!? | Wez Furlong | 2003-10-18 | 1 | -2/+2 |
| | |||||
* | fix cruft from previous incarnation of the iterators | Wez Furlong | 2003-10-17 | 1 | -2/+3 |
| | |||||
* | add com iterator support | Wez Furlong | 2003-10-17 | 3 | -0/+184 |
| | |||||
* | Show if a class/object is iterateable | Marcus Boerger | 2003-10-17 | 1 | -0/+18 |
| | |||||
* | - Make use of engine iterators | Marcus Boerger | 2003-10-17 | 2 | -2/+239 |
| | |||||
* | The sqlite classes need to be final | Marcus Boerger | 2003-10-17 | 1 | -0/+1 |
| | |||||
* | Fix showing final/abstract for classes | Marcus Boerger | 2003-10-17 | 1 | -2/+2 |
| | |||||
* | pre/hasprev have nothing to do with iteration | Marcus Boerger | 2003-10-17 | 1 | -2/+2 |
| | |||||
* | Fixed formatting issues (patch by: Joe Orton) | Ilia Alshanetsky | 2003-10-17 | 2 | -6/+6 |
| | |||||
* | Do not strip trailing spaces. | Ilia Alshanetsky | 2003-10-16 | 1 | -3/+2 |
| | |||||
* | Fixed bug #25777 (Do not rtrim() of text fields fetched from mssql) | Ilia Alshanetsky | 2003-10-15 | 1 | -0/+2 |
| | |||||
* | MFB Fix for #25825 | Wez Furlong | 2003-10-15 | 1 | -1/+9 |
| | |||||
* | fix for dereferncing null pointer (mfladischer@gmx.net) | George Schlossnagle | 2003-10-15 | 1 | -1/+6 |
| | |||||
* | - limit writing of field data to field len + 1 | Uwe Steinmann | 2003-10-14 | 1 | -3/+3 |
| | | | | | | This fixed many memory overrun errors which appeared in several scripts when writing a record. | ||||
* | unintialized variable. | Wez Furlong | 2003-10-13 | 1 | -1/+1 |
| | | | | | Patch by Joe Orton | ||||
* | Fix unintialized variable. | Wez Furlong | 2003-10-13 | 1 | -1/+1 |
| | | | | | Patch by Joe Orton. | ||||
* | - Email address change | Derick Rethans | 2003-10-13 | 2 | -2/+2 |
| | |||||
* | Fixed bug #25800 (parse_url() could not parse urls with empty port). | Ilia Alshanetsky | 2003-10-13 | 2 | -6/+40 |
| | |||||
* | Remove sendmail patch check. | Ilia Alshanetsky | 2003-10-13 | 1 | -25/+0 |
| | |||||
* | Fix possible segfault (this one came up when a method could not be found). | Wez Furlong | 2003-10-13 | 2 | -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 Krupin | 2003-10-12 | 1 | -4/+0 |
| | |||||
* | New array functions for doing intersection of arrays that are complementary | Andrey Hristov | 2003-10-09 | 4 | -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 test | Shane Caraveo | 2003-10-09 | 1 | -0/+8 |
| | |||||
* | add a DTD example | Shane Caraveo | 2003-10-09 | 3 | -0/+34 |
| | |||||
* | And this EOF flag... | Wez Furlong | 2003-10-08 | 1 | -3/+2 |
| | |||||
* | - Fixed bug #25780 (ext/session: invalid session.cookie_lifetime causes ↵ | foobar | 2003-10-08 | 1 | -4/+8 |
| | | | | crash in win32). | ||||
* | Implement stream_get_contents, which is somewhat akin to file_get_contents, | Wez Furlong | 2003-10-08 | 3 | -0/+34 |
| | | | | | except that it works on an already opened stream. | ||||
* | Oops.. | Moriyoshi Koizumi | 2003-10-08 | 1 | -1/+1 |
| | |||||
* | Better fix for bug #25758 | Moriyoshi Koizumi | 2003-10-08 | 1 | -1/+1 |
| | |||||
* | Fixed bug #25758 (var_export does not escape ' & \ inside array keys) | Ilia Alshanetsky | 2003-10-08 | 2 | -1/+19 |
| | |||||
* | A much better fix for moniker based COM object creation. | Wez Furlong | 2003-10-07 | 1 | -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 callbacks | Zeev Suraski | 2003-10-07 | 2 | -6/+12 |
| | |||||
* | - Fixed bug #18534 (ifx_close() leaves open session) | Corne' Cornelius | 2003-10-07 | 1 | -14/+48 |
| | | | | | - (ifx_do_close) Added | ||||
* | Cleaned up previous patch. | Ilia Alshanetsky | 2003-10-07 | 1 | -9/+6 |
| | |||||
* | - Fixed bug #25764 (ldap_get_option() crashes when called with unbinded ldap ↵ | foobar | 2003-10-06 | 1 | -4/+11 |
| | | | | link) | ||||
* | some namespace fixes | Rob Richards | 2003-10-06 | 3 | -30/+35 |
| | | | | | fix compiler warning | ||||
* | potential fix for #25759, although it will need further review. | Wez Furlong | 2003-10-06 | 1 | -1/+4 |
| |