diff options
| author | Zeev Suraski <zeev@php.net> | 1999-09-12 03:08:29 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-09-12 03:08:29 +0000 |
| commit | 5a6b8653b9f9fcb11227f0983b37ea140cbd21f4 (patch) | |
| tree | bbeb29bd12cbbb1110ae574f7b2f2915bbb2f593 | |
| parent | 036cc83ed64d0c6b42451d0e20b7908664df1324 (diff) | |
| download | php-git-5a6b8653b9f9fcb11227f0983b37ea140cbd21f4.tar.gz | |
*** empty log message ***
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | mod_php4.c | 4 | ||||
| -rw-r--r-- | output.c | 2 |
3 files changed, 10 insertions, 3 deletions
@@ -2,6 +2,11 @@ PHP 4.0 CHANGE LOG ChangeLog ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ?? 1999, Version 4.0 Beta 3 +<<<<<<< ChangeLog +<<<<<<< ChangeLog +- Renamed allow_builtin_links to expose_php (defaults to On). This directive + tells PHP whether it may expose its existence to the outside world, e.g. + by adding itself to the Web server header (Zeev) - Added support for transparent session id propagation (Sascha) - Made WDDX serialize object properties properly (Andrey) - Fixed WDDX mem leak when undefined variable is passed in @@ -22,7 +27,7 @@ PHP 4.0 CHANGE LOG ChangeLog - Resourcified Informix driver (Danny) - New resource handling for odbc, renamed to php_odbc.[ch] - Make set_time_limit() work on Unix (Rasmus) -- Add connection handling support (Rasmus) +- Added connection handling support (Rasmus) - Improved the Sybase-CT module to make use of resources (Zeev) - Improved the mSQL module to make use of resources (Zeev) - Changed mysql_query() and mysql_db_query() to return false in case of saving diff --git a/mod_php4.c b/mod_php4.c index bcd7415cb2..cc73f4bc89 100644 --- a/mod_php4.c +++ b/mod_php4.c @@ -488,7 +488,9 @@ void php_init_handler(server_rec *s, pool *p) apache_php_initialized = 1; } #if MODULE_MAGIC_NUMBER >= 19980527 - ap_add_version_component("PHP/" PHP_VERSION); + if (INI_INT("expose_php")) { + ap_add_version_component("PHP/" PHP_VERSION); + } #endif } @@ -207,7 +207,7 @@ static int zend_ub_body_write(const char *str, uint str_length) } zend_body_write = zend_ub_body_write_no_header; - result = zend_header_write(str, str_length); + result = zend_ub_body_write_no_header(str, str_length); if (newstr) { free(newstr); |
