summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a silly segfault bug caused by lack of strict type checkingMoriyoshi Koizumi2003-01-131-8/+22
|
* . Implemented a common filter parameter parsing function.Moriyoshi Koizumi2003-01-131-113/+573
| | | | | | | | | | | | | | | | | | | | | # For example "base64-encode.line-break-chars=--,base64-decode.blah=foobar" # will be parsed and splitted into a zval array as # array(2) { # ["base64-encode"]=> # array(1) { # ["line-break-chars"]=> # string(2) "--" # } # ["base64-decode"]=> # array(1) { # ["blah"] => # string(6) "foobar" # } # } . Added automatic line-breaking feature for base64 encode filter. This can be turned on by putting a option entry "base64-encode.line-length" to the filter parameters.
* - Fix ZTS buildDerick Rethans2003-01-131-0/+3
|
* Fixed a bug of the base64 decoder that a sequence of interveningMoriyoshi Koizumi2003-01-121-3/+8
| | | | | | characters that are supposed to be ignored by the decoder cause output corruption.
* ZE2 compatibilityStanislav Malyshev2003-01-121-1/+6
|
* ZTS fixes.Sebastian Bergmann2003-01-122-2/+2
|
* Disable ZE2-incompatible partsStanislav Malyshev2003-01-121-0/+4
| | | | | # This should be rewritten for ZE2 anyway...
* remove unneeded varStanislav Malyshev2003-01-121-2/+0
|
* Fixed infinite loop bug when an invalid quoted-printable escape sequenceMoriyoshi Koizumi2003-01-121-1/+2
| | | | | appears in the streem.
* Fixed error msg format so it correctly reports the actual filter nameMoriyoshi Koizumi2003-01-121-7/+7
|
* add INI setting session.hash_functionSascha Schumann2003-01-122-18/+95
| | | | | | add support for creating session ids using SHA-1 source more entropy for session ids
* handle ERANGE from strtol properlySascha Schumann2003-01-121-0/+5
|
* . Updated quoted-printable filter by a neater implementation.Moriyoshi Koizumi2003-01-121-190/+296
| | | | | | | | | . Changed emalloc family functions to pemalloc ones for persistent filters. . Changed base64 and quoted-printable filter names to "convert.base64-encode", "convert.base64-decode", "convert.quoted-printable-encode", and "convert.quoted-printable-decode" respectively for the consistency that may be requested later.
* Patch by Giuseppe Tanzilli <g.tanzilli@gruppocsf.com>.Sebastian Bergmann2003-01-121-1/+3
|
* Release skiped results. This will free memory on the server.Frank M. Kromann2003-01-121-31/+34
| | | | | Make mssql_execute work for stored procedures with and without returning result sets
* Do not 'convert' double columns to integers after the 1st row in the resultIlia Alshanetsky2003-01-111-1/+1
| | | | | set.
* Fixed handling of NUMERIC type, when it contains numbers that couldIlia Alshanetsky2003-01-111-1/+1
| | | | | potentially exceed the interger limit.
* Reverted because correct decision has not been made yet.Moriyoshi Koizumi2003-01-118-24/+24
|
* Reduced warnings in ZE2 buildMoriyoshi Koizumi2003-01-116-21/+21
|
* Reduced compiler warnings in ZE2 buildMoriyoshi Koizumi2003-01-112-3/+3
|
* revertingAndrey Hristov2003-01-111-4/+1
|
* Added stripos() & strripos() functions.Ilia Alshanetsky2003-01-111-5/+123
| | | | | Added 3rd parameter (offset) to strrpos().
* - Moving java and dotnet extensions to ext/rpcDerick Rethans2003-01-1118-2527/+0
|
* Add missing ,.Sebastian Bergmann2003-01-111-1/+1
|
* fix buildHarald Radi2003-01-113-7/+19
|
* this is now implemented by the engine itselfHarald Radi2003-01-106-995/+0
|
* ext/com is not compatible with ZE2, the ZE2 version is located inHarald Radi2003-01-1011-4577/+0
| | | | | ext/rpc/com
* Fixing copy and paste errorsFrank M. Kromann2003-01-101-3/+3
|
* Avoid warnings when running stored procedures returning multiple resultsFrank M. Kromann2003-01-101-10/+20
| | | | | | before setting output and return values. Additional results can be skipped by the optional parameter to mssql_execute
* Throw error if object is not a XML_DOCUMENT_NODE in domxml_dump_node()Christian Stocker2003-01-101-0/+5
|
* skipping unneeded copyAndrey Hristov2003-01-101-0/+4
|
* Fix the number format fix when the number of decimal places is 0.Wez Furlong2003-01-101-8/+15
| | | | | # Thanks to Edin for his telepathy!
* - Fixed bug #20155: xmlrpc compile problem with zendengine2 (Path by JanDerick Rethans2003-01-102-4/+4
| | | | | | | Schneider) @- Fixed bug #20155: xmlrpc compile problem with zendengine2 (Derick, Jan @ Schneider)
* Reduced compiler warningsMoriyoshi Koizumi2003-01-102-2/+2
|
* Reduced compiler warningsMoriyoshi Koizumi2003-01-101-2/+2
|
* Added missing cast operatorsMoriyoshi Koizumi2003-01-101-2/+2
|
* Fixed ImageRotate when rotation angle is 90 degrees, patch byIlia Alshanetsky2003-01-101-2/+2
| | | | | leon@leonatkinson.com.
* CS fixesIlia Alshanetsky2003-01-091-32/+43
|
* Fixed a memory corruption that occurs when an unterminated " is encounteredIlia Alshanetsky2003-01-091-1/+1
| | | | | this bug maybe be related to #21556.
* Adding extended checks for where FreeTDS is installedFrank M. Kromann2003-01-091-5/+31
|
* Bug #21531 file_exists() and other filestat functions throw errors when in ↵Sara Golemon2003-01-091-1/+1
| | | | | | | safe mode and file/directory does not exist. Extended php_checkuid function to add "flags" field via rename to php_checkuid_ex with alias for BC in functions that do want safe mode errors thrown.
* Fixed typoMoriyoshi Koizumi2003-01-091-1/+1
|
* Implement fprintf() and vfprintf().Wez Furlong2003-01-093-30/+107
| | | | | Add a couple of tests.
* Fix Bug #21523 - number_format could cause a memory allocation for aWez Furlong2003-01-092-18/+63
| | | | | | | | | | | | | | | | | | | | | negative memory size in situations where the sprintf implementation of the host system generated less decimal places than were requested. Resolved this issue by making number_format examine the string returned by spprintf and have it pad to the correct number of decimal places. Added a test-case based on the bug report; the length of decimal places required to trigger this bug is sprintf implementation dependent; as the implementation is now using spprintf (provided by PHP), that number is 78 digits (NDIG - 2). # I played with the idea of enhancing sprintf to do the equivalent, but # it was too much effort considering that the precision of floats/doubles # is not good enough to warrant it. # This fix could do with some QA from someone else to make sure there are # no memory bounds problems and then MFH it to PHP_4_3
* Use the correct link when checking for more results on stored proceduresFrank M. Kromann2003-01-091-1/+1
|
* Restire BC for mssql_execute(). This will not break the new feature for handlingFrank M. Kromann2003-01-092-17/+46
| | | | | | multiple results from a single stired procedure. Adding mssql_free_statement()
* Fixed bug #21529 (memory corruption by fsockopen()).Ilia Alshanetsky2003-01-091-1/+2
|
* changed from LVAL to RESVAL macroFrank M. Kromann2003-01-091-2/+2
|
* Adjust config.m4 for new build system and improve lib detection a littleYasuo Ohgaki2003-01-091-4/+25
|
* Fix the ZTS build.foobar2003-01-091-1/+1
|