Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed a silly segfault bug caused by lack of strict type checking | Moriyoshi Koizumi | 2003-01-13 | 1 | -8/+22 |
| | |||||
* | . Implemented a common filter parameter parsing function. | Moriyoshi Koizumi | 2003-01-13 | 1 | -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 build | Derick Rethans | 2003-01-13 | 1 | -0/+3 |
| | |||||
* | Fixed a bug of the base64 decoder that a sequence of intervening | Moriyoshi Koizumi | 2003-01-12 | 1 | -3/+8 |
| | | | | | | characters that are supposed to be ignored by the decoder cause output corruption. | ||||
* | ZE2 compatibility | Stanislav Malyshev | 2003-01-12 | 1 | -1/+6 |
| | |||||
* | ZTS fixes. | Sebastian Bergmann | 2003-01-12 | 2 | -2/+2 |
| | |||||
* | Disable ZE2-incompatible parts | Stanislav Malyshev | 2003-01-12 | 1 | -0/+4 |
| | | | | | # This should be rewritten for ZE2 anyway... | ||||
* | remove unneeded var | Stanislav Malyshev | 2003-01-12 | 1 | -2/+0 |
| | |||||
* | Fixed infinite loop bug when an invalid quoted-printable escape sequence | Moriyoshi Koizumi | 2003-01-12 | 1 | -1/+2 |
| | | | | | appears in the streem. | ||||
* | Fixed error msg format so it correctly reports the actual filter name | Moriyoshi Koizumi | 2003-01-12 | 1 | -7/+7 |
| | |||||
* | add INI setting session.hash_function | Sascha Schumann | 2003-01-12 | 2 | -18/+95 |
| | | | | | | add support for creating session ids using SHA-1 source more entropy for session ids | ||||
* | handle ERANGE from strtol properly | Sascha Schumann | 2003-01-12 | 1 | -0/+5 |
| | |||||
* | . Updated quoted-printable filter by a neater implementation. | Moriyoshi Koizumi | 2003-01-12 | 1 | -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 Bergmann | 2003-01-12 | 1 | -1/+3 |
| | |||||
* | Release skiped results. This will free memory on the server. | Frank M. Kromann | 2003-01-12 | 1 | -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 result | Ilia Alshanetsky | 2003-01-11 | 1 | -1/+1 |
| | | | | | set. | ||||
* | Fixed handling of NUMERIC type, when it contains numbers that could | Ilia Alshanetsky | 2003-01-11 | 1 | -1/+1 |
| | | | | | potentially exceed the interger limit. | ||||
* | Reverted because correct decision has not been made yet. | Moriyoshi Koizumi | 2003-01-11 | 8 | -24/+24 |
| | |||||
* | Reduced warnings in ZE2 build | Moriyoshi Koizumi | 2003-01-11 | 6 | -21/+21 |
| | |||||
* | Reduced compiler warnings in ZE2 build | Moriyoshi Koizumi | 2003-01-11 | 2 | -3/+3 |
| | |||||
* | reverting | Andrey Hristov | 2003-01-11 | 1 | -4/+1 |
| | |||||
* | Added stripos() & strripos() functions. | Ilia Alshanetsky | 2003-01-11 | 1 | -5/+123 |
| | | | | | Added 3rd parameter (offset) to strrpos(). | ||||
* | - Moving java and dotnet extensions to ext/rpc | Derick Rethans | 2003-01-11 | 18 | -2527/+0 |
| | |||||
* | Add missing ,. | Sebastian Bergmann | 2003-01-11 | 1 | -1/+1 |
| | |||||
* | fix build | Harald Radi | 2003-01-11 | 3 | -7/+19 |
| | |||||
* | this is now implemented by the engine itself | Harald Radi | 2003-01-10 | 6 | -995/+0 |
| | |||||
* | ext/com is not compatible with ZE2, the ZE2 version is located in | Harald Radi | 2003-01-10 | 11 | -4577/+0 |
| | | | | | ext/rpc/com | ||||
* | Fixing copy and paste errors | Frank M. Kromann | 2003-01-10 | 1 | -3/+3 |
| | |||||
* | Avoid warnings when running stored procedures returning multiple results | Frank M. Kromann | 2003-01-10 | 1 | -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 Stocker | 2003-01-10 | 1 | -0/+5 |
| | |||||
* | skipping unneeded copy | Andrey Hristov | 2003-01-10 | 1 | -0/+4 |
| | |||||
* | Fix the number format fix when the number of decimal places is 0. | Wez Furlong | 2003-01-10 | 1 | -8/+15 |
| | | | | | # Thanks to Edin for his telepathy! | ||||
* | - Fixed bug #20155: xmlrpc compile problem with zendengine2 (Path by Jan | Derick Rethans | 2003-01-10 | 2 | -4/+4 |
| | | | | | | | Schneider) @- Fixed bug #20155: xmlrpc compile problem with zendengine2 (Derick, Jan @ Schneider) | ||||
* | Reduced compiler warnings | Moriyoshi Koizumi | 2003-01-10 | 2 | -2/+2 |
| | |||||
* | Reduced compiler warnings | Moriyoshi Koizumi | 2003-01-10 | 1 | -2/+2 |
| | |||||
* | Added missing cast operators | Moriyoshi Koizumi | 2003-01-10 | 1 | -2/+2 |
| | |||||
* | Fixed ImageRotate when rotation angle is 90 degrees, patch by | Ilia Alshanetsky | 2003-01-10 | 1 | -2/+2 |
| | | | | | leon@leonatkinson.com. | ||||
* | CS fixes | Ilia Alshanetsky | 2003-01-09 | 1 | -32/+43 |
| | |||||
* | Fixed a memory corruption that occurs when an unterminated " is encountered | Ilia Alshanetsky | 2003-01-09 | 1 | -1/+1 |
| | | | | | this bug maybe be related to #21556. | ||||
* | Adding extended checks for where FreeTDS is installed | Frank M. Kromann | 2003-01-09 | 1 | -5/+31 |
| | |||||
* | Bug #21531 file_exists() and other filestat functions throw errors when in ↵ | Sara Golemon | 2003-01-09 | 1 | -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 typo | Moriyoshi Koizumi | 2003-01-09 | 1 | -1/+1 |
| | |||||
* | Implement fprintf() and vfprintf(). | Wez Furlong | 2003-01-09 | 3 | -30/+107 |
| | | | | | Add a couple of tests. | ||||
* | Fix Bug #21523 - number_format could cause a memory allocation for a | Wez Furlong | 2003-01-09 | 2 | -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 procedures | Frank M. Kromann | 2003-01-09 | 1 | -1/+1 |
| | |||||
* | Restire BC for mssql_execute(). This will not break the new feature for handling | Frank M. Kromann | 2003-01-09 | 2 | -17/+46 |
| | | | | | | multiple results from a single stired procedure. Adding mssql_free_statement() | ||||
* | Fixed bug #21529 (memory corruption by fsockopen()). | Ilia Alshanetsky | 2003-01-09 | 1 | -1/+2 |
| | |||||
* | changed from LVAL to RESVAL macro | Frank M. Kromann | 2003-01-09 | 1 | -2/+2 |
| | |||||
* | Adjust config.m4 for new build system and improve lib detection a little | Yasuo Ohgaki | 2003-01-09 | 1 | -4/+25 |
| | |||||
* | Fix the ZTS build. | foobar | 2003-01-09 | 1 | -1/+1 |
| |