summaryrefslogtreecommitdiff
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* MFH: Fixed stream_get_line() to behave as documented on non-blockingArnaud Le Blanc2008-11-041-0/+3
| | | | | streams
* MFH: Fixed bug #44607 (stream_get_line unable to correctly identify theArnaud Le Blanc2008-11-031-9/+13
| | | | | "ending" in the stream content)
* MFH: Fixed bug #45303 (Opening php:// wrapper in append mode resultsArnaud Le Blanc2008-11-031-0/+1
| | | | | in a warning)
* MFH: Fixed bug #43353 (wrong detection of 'data' wrapper causes notice)Arnaud Le Blanc2008-11-031-1/+1
|
* - MFH: Fixed bug #46082 (stream_set_blocking() can cause a crash in some ↵Felipe Pena2008-10-241-1/+5
| | | | circumstances)
* WSArnaud Le Blanc2008-10-201-19/+19
|
* Better fix for #46313Arnaud Le Blanc2008-10-201-3/+10
|
* Fixed #46313 (Magic quotes broke $_FILES)Arnaud Le Blanc2008-10-201-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 Lopes2008-09-232-7/+5
|
* MF52 fix Bug #46147: after stream seek, appending stream filter reads ↵Greg Beaver2008-09-222-9/+10
| | | | incorrect data
* Fixed bug #45392 (ob_start()/ob_end_clean() and memory_limit).Ilia Alshanetsky2008-09-171-1/+6
|
* Fixed bug #43053 (Regression: some numbers shown in scientific notation). ↵Dmitry Stogov2008-09-151-4/+1
| | | | | | | (int-e at gmx dot de) some 64bit test files may need to be fixed
* update list of pcre symbolsNuno Lopes2008-09-141-21/+23
|
* MFH: More accurate max_file_size / upload_max_filesize (fixes #45124)Arnaud Le Blanc2008-09-071-2/+2
|
* MFH: Fixed #43540 (rfc1867 handler newlength problem)Arnaud Le Blanc2008-09-061-1/+1
|
* Fixed Bug #43958 (class name added into the error message)Dmitry Stogov2008-09-021-2/+3
|
* back to devJohannes Schlüter2008-09-011-2/+2
|
* dev -> releaseJohannes Schlüter2008-09-011-2/+2
|
* WSAntony Dovgal2008-08-301-3/+3
|
* Oops, fix the assert.Rasmus Lerdorf2008-08-301-1/+1
|
* Fix for bugs 13961, 39927 and 45947Rasmus Lerdorf2008-08-301-1/+8
|
* MFHJani Taskinen2008-08-261-5/+7
|
* MFH: Fixed bug #43782 (feof() does not detect timeout on socket)David Soria Parra2008-08-262-3/+7
|
* - MFH:Pierre Joye2008-08-232-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 Joye2008-08-231-0/+1
|
* - MFH Cleanup exports and allow to overwrite ext registrationMarcus Boerger2008-08-226-12/+10
|
* reverted because of test failuresAntony Dovgal2008-08-181-7/+1
|
* MFH: Fixed bug #45392 (ob_start()/ob_end_clean() and memory_limit).Arnaud Le Blanc2008-08-181-1/+7
|
* - MFH: Removed some TSRMLS_FETCH()sFelipe Pena2008-08-151-7/+3
|
* MFH:Kalle Sommer Nielsen2008-08-131-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 errorPierre Joye2008-08-131-1/+2
|
* MFHJani Taskinen2008-08-131-9/+35
|
* - MFH: Constness (Added const qualifier to several function parameters)Felipe Pena2008-08-122-12/+12
|
* MFH: Missing files in previous commit (Check the relevant path for open_basedirArnaud Le Blanc2008-08-112-1/+19
| | | | | in symlink())
* - MFH error handling, now with save, replace, restoreMarcus Boerger2008-08-082-16/+4
|
* - MFH: Sorry for the compiler warningMarcus Boerger2008-08-081-1/+1
|
* - MFH store error handling mode on stack when executing internalMarcus Boerger2008-08-081-1/+1
| | | | | or overloaded functions and methods. [...]
* MFH:Arnaud Le Blanc2008-08-071-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 Dovgal2008-08-061-4/+12
| | | | fails and destroys the context
* Removed shebang line check from CGI sapi (it is checked by scanner)Dmitry Stogov2008-08-041-23/+11
|
* - MFH: Added parameter TSRMLS_DC in zend_is_callable()Felipe Pena2008-08-021-3/+3
|
* back to devJohannes Schlüter2008-08-011-2/+2
|
* 5.3.0alpha1Johannes Schlüter2008-08-011-2/+2
|
* - MFB: Fixed the parameter type expected. set_time_limit() should accept ↵Felipe Pena2008-07-251-6/+10
| | | | only integer.
* Fixed uninitialised dataDmitry Stogov2008-07-251-0/+1
|
* - Removed unused variable.Felipe Pena2008-07-241-1/+0
|
* MFH: invert the logics - FLAG_FCLOSE -> FLAG_NO_FCLOSEAntony Dovgal2008-07-231-1/+1
|
* - MFH: Fixed bug #44246 (closedir() accepts a file resource opened by fopen())Felipe Pena2008-07-221-0/+2
|
* - Fixed securities issue detailed in CVE-2008-2665 and CVE-2008-2666.Felipe Pena2008-07-211-8/+0
| | | | | (patch by Christian Hoffmann)
* MFH: Add E_USER_DEPRECATED (patch by Lars Strojny)Hannes Magnusson2008-07-211-0/+2
|