#
52ff887d |
| 29-Jul-2000 |
Zeev Suraski |
Made ob_start() and friends reentrant. It's now possible to implement this long-requested functionality, now that output buffering is re-entrant: function eval_ret($code) {
Made ob_start() and friends reentrant. It's now possible to implement this long-requested functionality, now that output buffering is re-entrant: function eval_ret($code) { ob_start(); eval($code); $retval = ob_get_contents(); ob_end_clean(); return $retval; }
show more ...
|
#
d8a4278a |
| 29-Jul-2000 |
Zeev Suraski |
- Update .dsp's - Make non ZTS Win32 build again
|
#
1a7f8519 |
| 28-Jul-2000 |
Hartmut Holzgraefe |
added '-l' option to command line / CGI version for 'syntax check only' plus a little cleanup and rearranging in command line option parsing @ CGI aka. command line version has now an op
added '-l' option to command line / CGI version for 'syntax check only' plus a little cleanup and rearranging in command line option parsing @ CGI aka. command line version has now an option '-l' for syntax check @ without execution (Hartmut)
show more ...
|
#
7bb67a62 |
| 18-Jul-2000 |
Stig Bakken |
@Set default include_path so PEAR files can be reached (Stig)
|
#
aa8d04a8 |
| 13-Jul-2000 |
Zeev Suraski |
Fix disable_functions feature
|
#
88113794 |
| 12-Jul-2000 |
Thies C. Arntzen |
(php_error) only set php_errormsg if we (still) have an active_symbol_table.
|
#
2cfa840e |
| 09-Jul-2000 |
Sascha Schumann |
Restore INI entries after the request shutdown of modules. This fixes the problems users of the session module encountered when using a save handler other than files.
|
Revision tags: PRE_METHOD_CALL_SEPERATE_FIX_PATCH |
|
#
23ca7b9f |
| 04-Jul-2000 |
Stig Bakken |
Added "html_errors" directive to optionally disable HTML formatting of error messages. The default is on. (Stig)
|
#
10342b4b |
| 02-Jul-2000 |
Stanislav Malyshev |
react only on CORE_ERROR
|
#
d3afeb5b |
| 02-Jul-2000 |
Stanislav Malyshev |
Be strict on errors in modules startup
|
#
397df3ca |
| 30-Jun-2000 |
Zeev Suraski |
- Revert bogus time.h commit - Fixed a problem under some versions of Windows that could cause PHP to hang on startup if errors occured, e.g. in the php.ini file
|
#
37fb71b9 |
| 30-Jun-2000 |
Zeev Suraski |
Set version number on DLLs
|
Revision tags: php-4.0.1pl1, php-4.0.1, php-4.0.1RC2 |
|
#
16c36318 |
| 26-Jun-2000 |
Zeev Suraski |
TRACK_VARS is really no longer necessary...
|
Revision tags: php-4.0.1RC |
|
#
6614e8ed |
| 25-Jun-2000 |
Zeev Suraski |
- I wrote a long msg but the commit didn't go through. - So here is the short version: - a) Start moving to binary opens in Windows - b) Give checkuid_mode() a small face lift including t
- I wrote a long msg but the commit didn't go through. - So here is the short version: - a) Start moving to binary opens in Windows - b) Give checkuid_mode() a small face lift including the fopen-wrappers.c - The mode to this function should at least be a #define but that is for - another day. Anyway this whole stuff should be given more face lifts in - the future.
show more ...
|
#
2456af59 |
| 23-Jun-2000 |
Sascha Schumann |
Remove some unnecessary CLS_FETCH()s.
|
#
c885f468 |
| 16-Jun-2000 |
Zeev Suraski |
Improve timeout support - ini_get("max_execution_time", ...) works now
|
#
f29eae13 |
| 16-Jun-2000 |
Zeev Suraski |
Move timeout code to Zend, allow Win32 timeouts @- Implemented max_execution_time under Win32 (Zeev)
|
#
aa49d4af |
| 13-Jun-2000 |
Andrei Zmievski |
Plus a leak when both register_globals and track_vars are off.
|
#
fce92e3c |
| 12-Jun-2000 |
Zeev Suraski |
Avoid using E_CORE_* errorlevels in any place which is not in the global startup sequence
|
#
5be48203 |
| 12-Jun-2000 |
Zeev Suraski |
Killed <?php_track_vars?>
|
#
bd593d3d |
| 11-Jun-2000 |
Thies C. Arntzen |
(set_time_limit) converted to new API. # for some weird reason this fixes a newly introduced crash.
|
Revision tags: PRE_EIGHT_BYTE_ALLOC_PATCH |
|
#
897bb1b5 |
| 09-Jun-2000 |
Zeev Suraski |
- Parse errors in the php.ini files under Windows will no longer mess up the HTTP headers in CGI mode and are now displayed in a message box
|
#
eb8cd900 |
| 08-Jun-2000 |
Hartmut Holzgraefe |
@ fopen_wrappers() are now extensible via modules so here it finaly is, the more general approach to fopen wrappers # see what i'll break this time
|
#
34c40031 |
| 06-Jun-2000 |
Zeev Suraski |
@- Made the short_tags, asp_tags and allow_call_time_pass_reference INI directives work @ on a per-directory basis as well, e.g. from .htaccess files (Zeev)
|
#
102c6ce4 |
| 05-Jun-2000 |
Sascha Schumann |
Move main.h to php_main.h.
|