Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH: Fixed stream_get_line() to behave as documented on non-blocking | Arnaud Le Blanc | 2008-11-04 | 1 | -0/+3 |
| | | | | | streams | ||||
* | MFH: Fixed bug #44607 (stream_get_line unable to correctly identify the | Arnaud Le Blanc | 2008-11-03 | 1 | -9/+13 |
| | | | | | "ending" in the stream content) | ||||
* | MFH: Fixed bug #45303 (Opening php:// wrapper in append mode results | Arnaud Le Blanc | 2008-11-03 | 1 | -0/+1 |
| | | | | | in a warning) | ||||
* | MFH: Fixed bug #43353 (wrong detection of 'data' wrapper causes notice) | Arnaud Le Blanc | 2008-11-03 | 1 | -1/+1 |
| | |||||
* | - MFH: Fixed bug #46082 (stream_set_blocking() can cause a crash in some ↵ | Felipe Pena | 2008-10-24 | 1 | -1/+5 |
| | | | | circumstances) | ||||
* | WS | Arnaud Le Blanc | 2008-10-20 | 1 | -19/+19 |
| | |||||
* | Better fix for #46313 | Arnaud Le Blanc | 2008-10-20 | 1 | -3/+10 |
| | |||||
* | Fixed #46313 (Magic quotes broke $_FILES) | Arnaud Le Blanc | 2008-10-20 | 1 | -4/+0 |
| | | | | | | | | | | | # magic_quotes_gpc was disabled during registration of $_FILES["x"]["tmp_name"] # and $GLOBALS["x"] (which is tmp_name with register_globals enabled). This # caused "x" to not be escaped so there was 2 different keys for the same file # in $_FILES, one with tmp_name and the other without. # All other variables (name, size, etc) are registered with magic_quotes_gpc # untouched, both in $_FILES and $GLOBALS and I did not found a reason for # disabling it for tmp_name. | ||||
* | clean some dead code (with static analysis help) | Nuno Lopes | 2008-09-23 | 2 | -7/+5 |
| | |||||
* | MF52 fix Bug #46147: after stream seek, appending stream filter reads ↵ | Greg Beaver | 2008-09-22 | 2 | -9/+10 |
| | | | | incorrect data | ||||
* | Fixed bug #45392 (ob_start()/ob_end_clean() and memory_limit). | Ilia Alshanetsky | 2008-09-17 | 1 | -1/+6 |
| | |||||
* | Fixed bug #43053 (Regression: some numbers shown in scientific notation). ↵ | Dmitry Stogov | 2008-09-15 | 1 | -4/+1 |
| | | | | | | | (int-e at gmx dot de) some 64bit test files may need to be fixed | ||||
* | update list of pcre symbols | Nuno Lopes | 2008-09-14 | 1 | -21/+23 |
| | |||||
* | MFH: More accurate max_file_size / upload_max_filesize (fixes #45124) | Arnaud Le Blanc | 2008-09-07 | 1 | -2/+2 |
| | |||||
* | MFH: Fixed #43540 (rfc1867 handler newlength problem) | Arnaud Le Blanc | 2008-09-06 | 1 | -1/+1 |
| | |||||
* | Fixed Bug #43958 (class name added into the error message) | Dmitry Stogov | 2008-09-02 | 1 | -2/+3 |
| | |||||
* | back to dev | Johannes Schlüter | 2008-09-01 | 1 | -2/+2 |
| | |||||
* | dev -> release | Johannes Schlüter | 2008-09-01 | 1 | -2/+2 |
| | |||||
* | WS | Antony Dovgal | 2008-08-30 | 1 | -3/+3 |
| | |||||
* | Oops, fix the assert. | Rasmus Lerdorf | 2008-08-30 | 1 | -1/+1 |
| | |||||
* | Fix for bugs 13961, 39927 and 45947 | Rasmus Lerdorf | 2008-08-30 | 1 | -1/+8 |
| | |||||
* | MFH | Jani Taskinen | 2008-08-26 | 1 | -5/+7 |
| | |||||
* | MFH: Fixed bug #43782 (feof() does not detect timeout on socket) | David Soria Parra | 2008-08-26 | 2 | -3/+7 |
| | |||||
* | - MFH: | Pierre Joye | 2008-08-23 | 2 | -16/+4 |
| | | | | | | - drop bindlib usage on windows - inet_pton, inet_ntop and inet_aton are always available (VC9 uses the CRT implementation, VC6 our own) | ||||
* | - MFH: expose MAXPATHLEN (PHP_MAXPATHLEN) | Pierre Joye | 2008-08-23 | 1 | -0/+1 |
| | |||||
* | - MFH Cleanup exports and allow to overwrite ext registration | Marcus Boerger | 2008-08-22 | 6 | -12/+10 |
| | |||||
* | reverted because of test failures | Antony Dovgal | 2008-08-18 | 1 | -7/+1 |
| | |||||
* | MFH: Fixed bug #45392 (ob_start()/ob_end_clean() and memory_limit). | Arnaud Le Blanc | 2008-08-18 | 1 | -1/+7 |
| | |||||
* | - MFH: Removed some TSRMLS_FETCH()s | Felipe Pena | 2008-08-15 | 1 | -7/+3 |
| | |||||
* | MFH: | Kalle Sommer Nielsen | 2008-08-13 | 1 | -6/+0 |
| | | | | | | * Remove NTDDI_VERSION declaring and use the one in config.w32.h * Remove another _WIN32_WINNT macro redef in win32/time.c | ||||
* | - move declaration on top and fix build error | Pierre Joye | 2008-08-13 | 1 | -1/+2 |
| | |||||
* | MFH | Jani Taskinen | 2008-08-13 | 1 | -9/+35 |
| | |||||
* | - MFH: Constness (Added const qualifier to several function parameters) | Felipe Pena | 2008-08-12 | 2 | -12/+12 |
| | |||||
* | MFH: Missing files in previous commit (Check the relevant path for open_basedir | Arnaud Le Blanc | 2008-08-11 | 2 | -1/+19 |
| | | | | | in symlink()) | ||||
* | - MFH error handling, now with save, replace, restore | Marcus Boerger | 2008-08-08 | 2 | -16/+4 |
| | |||||
* | - MFH: Sorry for the compiler warning | Marcus Boerger | 2008-08-08 | 1 | -1/+1 |
| | |||||
* | - MFH store error handling mode on stack when executing internal | Marcus Boerger | 2008-08-08 | 1 | -1/+1 |
| | | | | | or overloaded functions and methods. [...] | ||||
* | MFH: | Arnaud Le Blanc | 2008-08-07 | 1 | -6/+6 |
| | | | | | | | | | | Added clear_realpath_cache and filename parameters to clearstatcache() (Jani, Arnaud) [DOC] clearstatcache() now defaults to not affect the realpath cache. clearstatcache() now takes two optionnal parameters, clear_realpath_cache to clear the realpath cache (defaults to false), and filename to clear only the given filename from the cache. | ||||
* | MFH: increase context refcount before open() to avoid crash when open() ↵ | Antony Dovgal | 2008-08-06 | 1 | -4/+12 |
| | | | | fails and destroys the context | ||||
* | Removed shebang line check from CGI sapi (it is checked by scanner) | Dmitry Stogov | 2008-08-04 | 1 | -23/+11 |
| | |||||
* | - MFH: Added parameter TSRMLS_DC in zend_is_callable() | Felipe Pena | 2008-08-02 | 1 | -3/+3 |
| | |||||
* | back to dev | Johannes Schlüter | 2008-08-01 | 1 | -2/+2 |
| | |||||
* | 5.3.0alpha1 | Johannes Schlüter | 2008-08-01 | 1 | -2/+2 |
| | |||||
* | - MFB: Fixed the parameter type expected. set_time_limit() should accept ↵ | Felipe Pena | 2008-07-25 | 1 | -6/+10 |
| | | | | only integer. | ||||
* | Fixed uninitialised data | Dmitry Stogov | 2008-07-25 | 1 | -0/+1 |
| | |||||
* | - Removed unused variable. | Felipe Pena | 2008-07-24 | 1 | -1/+0 |
| | |||||
* | MFH: invert the logics - FLAG_FCLOSE -> FLAG_NO_FCLOSE | Antony Dovgal | 2008-07-23 | 1 | -1/+1 |
| | |||||
* | - MFH: Fixed bug #44246 (closedir() accepts a file resource opened by fopen()) | Felipe Pena | 2008-07-22 | 1 | -0/+2 |
| | |||||
* | - Fixed securities issue detailed in CVE-2008-2665 and CVE-2008-2666. | Felipe Pena | 2008-07-21 | 1 | -8/+0 |
| | | | | | (patch by Christian Hoffmann) | ||||
* | MFH: Add E_USER_DEPRECATED (patch by Lars Strojny) | Hannes Magnusson | 2008-07-21 | 1 | -0/+2 |
| |