#
f77719d8 |
| 31-Dec-2008 |
Marcus Boerger |
MFH - Changed dl() to be disabled by default. Enabled only when explicitly registered by the SAPI layer. Enabled only with CLI, CGI and EMBED. (Dmitry) [DOC]
|
#
08659c2d |
| 31-Dec-2008 |
Sebastian Bergmann |
MFH: Bump copyright year, 3 of 3.
|
Revision tags: NEWS, php-5.2.8, BEFORE_HEAD_NS_CHANGES_MERGE, php-5.3.0alpha3, php-5.3.0alpha2, php-5.2.7 |
|
#
c5c9e45a |
| 28-Nov-2008 |
Dmitry Stogov |
Fixed bug #46366 (bad cwd with / as pathinfo)
|
Revision tags: php-5.2.7RC5, php-5.2.7RC4, BEFORE_HEAD_NS_CHANGE, BEFORE_NS_RULES_CHANGE |
|
#
f121e72a |
| 08-Nov-2008 |
Rasmus Lerdorf |
Fix for bug #46525
|
Revision tags: php-5.2.7RC3, php-5.2.7RC2 |
|
#
e3c556c8 |
| 21-Oct-2008 |
Arnaud Le Blanc |
MFH: Fixed FCGI_GET_VALUES requests (fixes #45522)
|
#
e45af913 |
| 17-Oct-2008 |
Ilia Alshanetsky |
Fixed bug #46319 (PHP sets default Content-Type header for HTTP 304 response code, in cgi sapi)
|
Revision tags: php-5.2.7RC1 |
|
#
51eb7f5d |
| 02-Sep-2008 |
Dmitry Stogov |
Fixed bug #45860 (header() function fails to correctly replace all Status lines)
|
#
421751d2 |
| 26-Aug-2008 |
Rasmus Lerdorf |
Remove stray folding tag here
|
#
ced68094 |
| 26-Aug-2008 |
Dmitry Stogov |
Fixed bug #45786 (FastCGI process exited unexpectedly)
|
#
5304e563 |
| 18-Aug-2008 |
Dmitry Stogov |
Fix for bug #45786 (FastCGI process exited unexpectedly)
|
#
4362b07e |
| 15-Aug-2008 |
Dmitry Stogov |
Fixed double call to MSHUTDOWN in case of `php-cgi -m`
|
#
e5e6f553 |
| 13-Aug-2008 |
Jani Taskinen |
MFH
|
Revision tags: php-4.4.9 |
|
#
7355c3c5 |
| 04-Aug-2008 |
Dmitry Stogov |
Removed shebang line check from CGI sapi (it is checked by scanner)
|
Revision tags: php-5.3.0alpha1, php-4.4.9RC1 |
|
#
05f3ed67 |
| 15-Jul-2008 |
Dmitry Stogov |
Fixed bug #45151 (Crash with URI/file..php (filename contains 2 dots))
|
#
c27eba9b |
| 15-Jul-2008 |
Dmitry Stogov |
Fixed bug #45423 (fastcgi parent process doesn't invoke php_module_shutdown before shutdown) (basant dot kukreja at sun dot com)
|
#
8054f84a |
| 23-Jun-2008 |
Dmitry Stogov |
Fixed possible buffer overflow
|
Revision tags: BEFORE_NEW_PARAMETER_PARSE, RELEASE_1_2_5, RELEASE_2_0_0b1, php-5.2.6, RELEASE_1_0_2 |
|
#
ba8e3174 |
| 15-Apr-2008 |
Dmitry Stogov |
Optimized request startup sequence for php.ini without per dir and per host configurations
|
Revision tags: php-5.2.6RC5 |
|
#
9412a490 |
| 09-Apr-2008 |
Dmitry Stogov |
Fixed bug #44673 (With CGI argv/argc starts from arguments, not from script)
|
Revision tags: php-5.2.6RC4, php-5.2.6RC3, RELEASE_2_0_0a2, RELEASE_2_0_0a1 |
|
#
45e327a6 |
| 18-Mar-2008 |
Rasmus Lerdorf |
Add new empty child terminate sapi hook to the rest of the sapis
|
#
8c885b89 |
| 18-Mar-2008 |
Dmitry Stogov |
Implemented concept of "delayed early binding" that allows opcode caches to perform class declaration (early and/or run-time binding) in exactly the same order as vanila php. The following pseudo
Implemented concept of "delayed early binding" that allows opcode caches to perform class declaration (early and/or run-time binding) in exactly the same order as vanila php. The following pseudo-code explains how it should be used in opcode cache. function cache_compile_file($filename) { if (!is_cached($filename)) { ... orig_compiler_options = CG(compiler_optins); CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES | ZEND_COMPILE_DELAYED_BINDING; $op_array = orig_compile_file($filename); CG(compiler_options) = orig_copiler_options; ... } else { $op_array = restore_from_cache($filename); } zend_do_delayed_early_binding($op_array); }
show more ...
|
#
af316021 |
| 16-Mar-2008 |
Marcus Boerger |
- Rewrite scanner to be based on re2c instead of flex The full patch is available as: http://php.net/~helly/php-re2c-5.3-20080316.diff.txt This is against php-re2c repository versio
- Rewrite scanner to be based on re2c instead of flex The full patch is available as: http://php.net/~helly/php-re2c-5.3-20080316.diff.txt This is against php-re2c repository version 98 An older patch against version 97 is available under: http://php.net/~helly/php-re2c-97-20080316.diff.txt
show more ...
|
Revision tags: php-5.2.6RC2 |
|
#
183267dc |
| 28-Feb-2008 |
Ilia Alshanetsky |
MFB: Fixed security issue detailed in CVE-2008-0599
|
Revision tags: php-5.2.6RC1, RELEASE_1_3_1 |
|
#
f27c1b9d |
| 15-Feb-2008 |
Dmitry Stogov |
optimization
|
Revision tags: php-4.4.8 |
|
#
d1dded87 |
| 31-Dec-2007 |
Sebastian Bergmann |
MFH: Bump copyright year, 2 of 2.
|
Revision tags: php-4.4.8RC1 |
|
#
c34a2574 |
| 03-Dec-2007 |
Dmitry Stogov |
The -f option is fixed to work in the same way as in CLI sapi
|