summaryrefslogtreecommitdiff
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_5_0_0'.php-5.0.0SVN Migration2004-07-151-3/+3
|
* This commit was manufactured by cvs2svn to create branch 'PHP_5_0'.SVN Migration2004-07-151-285/+0
|
* - 5.0.1-devAndi Gutmans2004-07-131-3/+3
|
* - Roll PHP 5.0.0Andi Gutmans2004-07-131-2/+2
|
* Looks like Sara forgot to change this too.Wez Furlong2004-07-131-1/+1
|
* Fix file_get_contents() bug...Wez Furlong2004-07-121-0/+2
|
* Ooups...Stefan Esser2004-07-111-0/+3
|
* Fixed: PARSE_TYPE parameter to input_filterStefan Esser2004-07-111-2/+7
| | | | | Fixed: input_filter should also be able to filter empty variables by name
* RIP: greedy ready problemsWez Furlong2004-07-101-1/+2
| | | | | | This allows people to use fread($fp, filesize($filename)) for regular files, but packet-based non-greedy reads for everything else.
* - Better stability during premature shutdown of request startupAndi Gutmans2004-07-102-6/+10
|
* Fix for Bug #28964 fread "greedy" behaviourWez Furlong2004-06-291-0/+3
|
* As long we pass values by reference this is needed. Ugly!Stefan Esser2004-06-261-0/+4
|
* BugFix#28868 (Part Two): This fixes thread unsafety in the userspaceSara Golemon2004-06-214-5/+32
| | | | | filters which relates to the fix just applied for userspace wrappers.
* BugFix#28868: Wrapper hash not thread-safe.Sara Golemon2004-06-213-7/+26
| | | | | | | | Userdefined wrappers were being registered into a global wrapper hash which can cross threads. Termination of once instance then has the potential to leave an active stream in another instance with no wrapper leading to segfault.
* Fixed bug #28692 (\0 in Authenticate header passed via safe_mode).Ilia Alshanetsky2004-06-081-1/+1
|
* - Go back to -dev (Shouldn't need another RC)Andi Gutmans2004-06-071-2/+2
|
* - Roll RC3Andi Gutmans2004-06-071-2/+2
|
* Fixed bug #28670 (WWW-Authentication header mangling with PCRE in safe_modeIlia Alshanetsky2004-06-071-0/+5
| | | | | adds extra spaces).
* - Prepare for RC3RC2Andi Gutmans2004-06-031-2/+2
|
* The engine will take care out-of-memory situation for us.Ilia Alshanetsky2004-05-281-7/+2
|
* - Back to RC3-dev until we roll finalAndi Gutmans2004-05-271-2/+2
|
* Fix #25939 for good this time.Wez Furlong2004-05-271-1/+1
| | | | | # How could I miss this??
* - RC3RC1Andi Gutmans2004-05-271-2/+2
|
* Fix silly mistake.Wez Furlong2004-05-262-4/+4
| | | | | Thanks Antony :)
* break is betterStefan Esser2004-05-251-1/+1
|
* *sigh*, obviously, we need this to be able to use sapi_module.nameWez Furlong2004-05-251-0/+1
|
* DEBUG -> PHP_DEBUGWez Furlong2004-05-251-1/+1
|
* check if it matches... not if it doesn't...Wez Furlong2004-05-251-1/+1
|
* In debug mode, under CLI don't close stderr.Wez Furlong2004-05-251-0/+9
| | | | | | | | This is so that we can see any error reports. # for extra paranoia, could limit this check to happen only after the script is # finished running.
* - Fixed bug #27640 memory leak of registered_zend_ini_directives (Dmitry)Andi Gutmans2004-05-231-0/+2
|
* This is more correct.Stefan Esser2004-05-231-3/+3
|
* - Fixed TSRM problem in latest commit.Derick Rethans2004-05-211-1/+1
|
* - Fixed bug #28456 (Problem with enclosed / in uploaded file names)Derick Rethans2004-05-211-1/+10
|
* - Allow extra parameters to mail to be forced also from virtual host settings.Derick Rethans2004-05-201-1/+1
|
* - Fixed definesDerick Rethans2004-05-111-5/+5
|
* Bugfix #28300 Userspace stream/filter names don't need to be lowercased.Sara Golemon2004-05-061-1/+0
|
* BugFix#28287 stream_*_register() not calling __autoload().Sara Golemon2004-05-051-1/+1
|
* - RC3-devAndi Gutmans2004-04-251-2/+2
|
* - RC2Andi Gutmans2004-04-251-2/+2
|
* Fixed bug #19749 (shouldn't mmap() files larger than memory_limit)Wez Furlong2004-04-211-1/+5
|
* - RC2-devAndi Gutmans2004-04-211-2/+2
|
* - Prepare for RC2RC2 (if everything is OK especially Zeev's interfaceAndi Gutmans2004-04-211-2/+2
| | | | | - patch I'll roll RC2 tomorrow).
* Bugfix #28012, now for snprintfMarcus Boerger2004-04-151-1/+1
|
* Bugfix #28012 spprintf() output inconsistent for %pMarcus Boerger2004-04-151-1/+1
|
* - RC2-devAndi Gutmans2004-04-141-2/+2
|
* - RC2RC1Andi Gutmans2004-04-141-2/+2
|
* BugFix: Copy/Paste mistake referenced undefined variable on platforms ↵Sara Golemon2004-04-091-1/+1
| | | | without gettimeofday()
* Only wind filters when appending to the read chain.Sara Golemon2004-04-011-1/+1
|
* This leaks when a stream opener proxy opens another stream.Sara Golemon2004-04-011-0/+3
|
* BugFix#27619Sara Golemon2004-03-313-4/+83
| | | | | | Filters not applied to pre-buffered stream data. (esp. http:// streams)