summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_5_0_0RC3RC2'.php-5.0.0RC3RC2SVN Migration2004-06-0393-11238/+0
|
* Ton of fixesArd Biesheuvel2004-06-021-24/+41
|
* Initial revision of PHP/Interbase UDF libArd Biesheuvel2004-06-021-0/+127
| | | | | | # This will allow users running the embedded engine # to call PHP functions from inside their SQL statements
* Don't be too strict if the number of binding arguments provided exceeds the ↵Ard Biesheuvel2004-06-011-7/+10
| | | | expected number
* No need to NULL terminate manually, snprintf() does it for us already.Ilia Alshanetsky2004-06-011-7/+0
|
* Fixed bug #28597 (xmlrpc_encode_request() incorrectly encodes chars inIlia Alshanetsky2004-06-011-4/+6
| | | | | | 200-210 range). Patch by: fernando dot nemec at folha dot com dot br
* Fixed leak inside MINFO function.Ilia Alshanetsky2004-06-011-9/+19
| | | | | | | | Fixed crash inside enchant_dict_suggest() when there are no suggestions. Added missing safe_mode/open_basedir check inside enchant_broker_request_pwl_dict(). Fixed various function prototypes.
* Removed debugging codeArd Biesheuvel2004-06-011-4/+3
|
* Use constant IBASE_CREATE instead of just 0Ard Biesheuvel2004-06-014-4/+8
|
* Woops, missed oneArd Biesheuvel2004-06-011-4/+4
|
* Fixed bug #28569 (connection id is not thread safe)Ard Biesheuvel2004-06-011-16/+22
|
* Refcount must not be set separatley again.Marcus Boerger2004-05-311-1/+0
|
* Add missing initializationMarcus Boerger2004-05-311-0/+3
|
* Add missing initializationMarcus Boerger2004-05-311-0/+1
|
* MFB: missing ';'Pierre Joye2004-05-311-3/+2
|
* Added missing argument check.Ilia Alshanetsky2004-05-311-0/+4
|
* Fix build.Ilia Alshanetsky2004-05-311-2/+2
|
* Fix typo in error messageArd Biesheuvel2004-05-311-2/+2
|
* Improved handling of 'CREATE DATABASE ...' by ibase_query()Ard Biesheuvel2004-05-313-170/+170
| | | | | Improved param handling of ibase_query() and ibase_execute()
* Fix bug #28584: DOMText::splitText() does not split text properly (benjcarson)Rob Richards2004-05-3120-171/+157
| | | | | Prototype fixes
* Fix prototypesZeev Suraski2004-05-311-11/+11
|
* fix leak when using relaxngRob Richards2004-05-311-1/+11
| | | | | | | interim fix for isolating our streams handling - once libxml supports overriding streams this should be changed for security reasons
* Fix typoZeev Suraski2004-05-311-1/+1
|
* Update the mcve module for libmonetra 4.0Brad House2004-05-302-182/+465
| | | | | | | | | A compatability layer has been introduced which should mean all scripts written for v 3.2 of the module should continue working, as well as compilation should still work against libmcve 3.2.x. This module eventually needs to be renamed to 'monetra' to reflect the naming change of the underlying library.
* Restrict 'CREATE DATABASE' in sql safe modeArd Biesheuvel2004-05-301-0/+5
|
* Fix Win32 buildArd Biesheuvel2004-05-302-3/+3
| | | | | Added missing 'break'
* Fixed memory leak on ifx_error().Ilia Alshanetsky2004-05-301-35/+105
|
* Fixed bug #28564 (Problem building informix as a shared extension).Ilia Alshanetsky2004-05-302-0/+7
| | | | | Patch by: roques at mti dot ag
* Fix unregistered bug (segfault on uninitialised pointer)Ard Biesheuvel2004-05-301-4/+12
| | | | | Return string("0 ") from ibase_query() if query succeeded but did not affect any rows
* No meaning for unsignedZeev Suraski2004-05-301-1/+1
|
* Fix prototypeZeev Suraski2004-05-301-1/+1
|
* Use default character set in generated test DBArd Biesheuvel2004-05-301-2/+2
|
* Fix HTML/table layout in info() entryArd Biesheuvel2004-05-301-6/+10
|
* Removed ibase_timefmt() - use ini_set() insteadArd Biesheuvel2004-05-305-121/+25
| | | | | Improved phpinfo() appearance
* Update to PHP-style prototypesZeev Suraski2004-05-301-122/+121
| | | | | (a PHP function returning char *? What were you smoking? :)
* manually check for egrepBrad House2004-05-301-0/+3
|
* Turn this off thenWez Furlong2004-05-291-2/+2
|
* Don't rely on TIOCNOTTY.Wez Furlong2004-05-291-3/+5
|
* Changed default date format to ISOArd Biesheuvel2004-05-282-9/+16
| | | | | Enable sync flag in connect()
* 'tidy' should not be final, but 'tidyNode' should be.John Coggeshall2004-05-281-4/+4
|
* Fix commit/rollback of multi-link transactionsArd Biesheuvel2004-05-281-46/+50
| | | | | Some CS
* Fixed memory leak on error.Ilia Alshanetsky2004-05-281-0/+1
|
* Fixed off-by-one in http_fopen_wrapperStefan Esser2004-05-281-1/+6
|
* Hopefully resolve proc_open build issues.Wez Furlong2004-05-281-4/+6
| | | | | | If we need anything more elaborate than this, then we can move to a configure time check as Sascha suggests.
* fix memleak in php callbacksChristian Stocker2004-05-281-1/+1
|
* Fixed off-by-one in php_parse_url.Stefan Esser2004-05-281-1/+1
|
* - Fixed ip2long() behavior if an invalid IP address was passed to theDerick Rethans2004-05-281-1/+1
| | | | | | function. This makes it possible to distingiush between "255.255.255.255" and a wrong one.
* Better skip condition check for session tests.Ilia Alshanetsky2004-05-271-8/+11
|
* namespace/tagname validation fixes (Adam Trachtenberg)Rob Richards2004-05-276-47/+489
| | | | | added new test
* Memory leaks were fixedDmitry Stogov2004-05-271-5/+9
|