*** empty log message ***

This commit is contained in:
Zeev Suraski 1999-09-12 03:08:29 +00:00
parent 036cc83ed6
commit 5a6b8653b9
3 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -488,7 +488,9 @@ void php_init_handler(server_rec *s, pool *p)
apache_php_initialized = 1;
}
#if MODULE_MAGIC_NUMBER >= 19980527
if (INI_INT("expose_php")) {
ap_add_version_component("PHP/" PHP_VERSION);
}
#endif
}

View File

@ -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);