summaryrefslogtreecommitdiff
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'dev'.devSVN Migration2002-08-061-283/+0
|
* Added php_ob_handler_used to check if a specific output handler is usedMarcus Boerger2002-08-052-0/+35
| | | | | in c.
* -keep mimetype until sapi deactivationMarcus Boerger2002-08-051-12/+12
| | | | | -move NULL check for sapi_apply_default_charset to proper position.
* -New function ob_list_handlersMarcus Boerger2002-08-052-0/+37
| | | | | | @- Added ob_list_handlers() which returns an array of all active output @ handlers. (marcus)
* Yup, sizeof() includes the space for the \0Rasmus Lerdorf2002-08-031-1/+1
|
* -use const to clarify codeMarcus Boerger2002-08-021-2/+2
| | | | | -fix tsrmls build (therefore rfc1867.c)
* made sapi_register_treat_data() to support multibyte input encoding ↵Rui Hirokawa2002-08-027-14/+27
| | | | translation without MBSTR_ENC_TRANS and changed php_treat_data to php_default_treat_data.
* Fixed wrong usage of strncmp.Stefan Roehrich2002-08-011-4/+4
|
* - free mimetype and statusline early if no longer needed or in deactivationMarcus Boerger2002-08-011-11/+13
| | | | | #not setting them to NULL caused the segfault
* Need room for the \0 here to avoid an overflowRasmus Lerdorf2002-08-011-1/+1
|
* -problem with CLI/mbstring/output bufferingMarcus Boerger2002-07-311-8/+14
|
* Fix for non-mbstring builds. Bad Yasuo! :)Zeev Suraski2002-07-311-3/+2
|
* First try to open php-SAPI.ini and if it fails fall back to regularEdin Kadribasic2002-07-291-1/+6
| | | | | | | php.ini file. For example cli version of PHP will first try to open php-cli.ini in the usual ini file search path and only if it fails will it try to open php.ini using the same path.
* Commit patch as discussed on LinuxTag and posted to php-dev in June.Stefan Roehrich2002-07-281-0/+34
| | | | | | | | | | Disables zlib.output_compression for scripts with image/ content-type header (fixes bug #16109) and makes it possible to switch zlib.output_compression during script execution before the headers are sent. @- zlib.output_compression is disabled for "image/" content-type @ headers and can be changed during script execution. (Stefan)
* Fixed some.php?a&b&c does not initilize $_GET['a'], $_GET['b'], $_GET['c']Yasuo Ohgaki2002-07-281-0/+3
| | | | | | when mbstr-enc-trans is disabled. # There is a bug in php_mbstr_encoding_handler() alo, I'll fix it later.
* fixed: output encoding translation by mb_output_handler() in ext/mbstring ↵Rui Hirokawa2002-07-272-0/+8
| | | | was not usable when Content-Type is set by header().
* Allow setting post_max_size and upload_max_filesize in .htaccess files toofoobar2002-07-251-3/+5
|
* do not dtor empty elementsStefan Esser2002-07-251-1/+3
|
* break out if there is no data to work on.Stefan Esser2002-07-241-0/+4
|
* Switch streams socket abstraction to use a timeval structure instead of anJason Greene2002-07-222-18/+25
| | | | | | | | integer to allow subsecond timeouts. This supports the previous behavior of fsockopen() Fixes bug #16261
* Fix feof() on win32Jason Greene2002-07-192-2/+11
| | | | | Bug #18436
* ws fixfoobar2002-07-191-1/+1
|
* - set_time_limit() now returns whether it succeeded in changing the timeDerick Rethans2002-07-171-2/+6
| | | | | limit.
* Accoding to safe_mode.h, php_checkuid() has six modes.Yasuo Ohgaki2002-07-171-1/+3
|
* use Zend API to access llist countStefan Esser2002-07-151-1/+1
|
* IF --disable-mbstr-enc-trans is used OR mbstring is compiled as sharedfoobar2002-07-141-3/+3
| | | | | extension, these functions are not available.
* Fix bug: #18285, php_checkuid() mangled the passed path.foobar2002-07-131-3/+6
|
* - Fixed bug: #18268. If pcre is build as shared extension, we can't usefoobar2002-07-131-9/+10
| | | | | | php_pcre_replace() here. - Cleaned up a bit.
* - Added predefined constants for the upload errors.foobar2002-07-123-6/+18
| | | | | - Removed the debugging error (not useful for end-users)
* - Fix for bug #18283Derick Rethans2002-07-111-2/+2
| | | | | #- It doesn't work from within a script anyways
* These two can not be set in script. (so that they would have any effect)foobar2002-07-081-2/+2
|
* Fix typofoobar2002-07-051-1/+1
|
* fixed shift_jis character corruption including 0x5c as second byte following ↵Rui Hirokawa2002-07-051-6/+11
| | | | a slash on uploaded filename.
* Fix ZTS build.Sebastian Bergmann2002-07-031-1/+1
|
* Added MBSTR_ENC_TRANS to allow compilation and linking under win32Frank M. Kromann2002-07-031-0/+1
|
* fixed shift_jis character corruption including 0x5c as second byte on ↵Rui Hirokawa2002-07-031-0/+7
| | | | uploaded filename.
* fix typoSascha Schumann2002-07-031-1/+1
|
* Add sapi_header_op interface which supersedes the sapi_add_header and _exSascha Schumann2002-07-032-24/+98
| | | | | | | | | | | | | | | | | | | | | calls. Revert the change to the sapi_add_header_ex interface. Fix various bugs: 1. header("HTTP/1.0 306 foo"); header("Location: absolute-uri"); did not work in combination with several SAPI modules, because http_status_line was never properly reset. And thus, all SAPI modules which looked at http_status_line ignored the changed http_response_code. 2. The CGI SAPI did not send out the HTTP status line at all, if http_status_line had not been set explicitly by calling header("HTTP/1.0 200 foo");
* - No C++ commentsDerick Rethans2002-07-011-1/+1
|
* Fix win32 build.foobar2002-07-011-4/+2
|
* Main script should not be parsed when (include|require)_once()'ed, #17720Sander Roobol2002-06-301-0/+10
| | | | | # Derick, MFH?
* -xbuf_resize does not need to have return valueMarcus Boerger2002-06-261-14/+8
|
* - Implement Andrei's request for disabling memory leak reporting in debugDerick Rethans2002-06-262-1/+3
| | | | | | builds. #- Andrei: I can show you the logs :)
* explain difference between sprintf, snprintf and spprintfMarcus Boerger2002-06-231-0/+43
| | | | | | | #before complaining snprintf is often used wrong: #snprintf does not terminate the buffer but most people expect it #that could be a security isuue at somewhere
* #some sentences about the functionsMarcus Boerger2002-06-231-0/+13
|
* -freeing memory for pbuf=NULLMarcus Boerger2002-06-231-0/+2
| | | | | #should have been one commit but to many versions during tests
* -allow pbuf = NULL in case of NO MEMORY, tooMarcus Boerger2002-06-231-1/+2
|
* -allways terminate bufferMarcus Boerger2002-06-231-1/+4
| | | | | -allow pbuf parameter to be NULL for buffer size calculation
* -unlimited php_printfMarcus Boerger2002-06-231-5/+8
|
* -compiler warning (missing data type)Marcus Boerger2002-06-231-1/+1
|