1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/releases/4_4_2.php
Sara Golemon f1cb7e74c4 Swap uses of _SERVER[DOCUMENT_ROOT] for __DIR__
4/4 - Update releases directory.
2019-05-31 12:48:34 -04:00

32 lines
990 B
PHP

<?php
$_SERVER['BASE_PAGE'] = 'releases/4_4_1.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header("PHP 4.4.2 Release Announcement");
?>
<h1>PHP 4.4.2. Release Announcement</h1>
<p>
The PHP Development Team would like to announce the immediate release of
<a href="/downloads.php">PHP 4.4.2</a>.
</p>
<p>
This is a bug fix release, which addresses some security problems too. The
major points that this release corrects are:
<ul>
<li>Prevent header injection by limiting each header to a single line.</li>
<li>Possible XSS inside error reporting functionality.</li>
<li>Missing safe_mode/open_basedir checks into cURL extension.</li>
<li>Apache 2 regression with sub-request handling on non-Linux systems.</li>
<li>key() and current() regression related to references.</li>
</ul>
</p>
<p>
This release also fixes about 30 other defects.
</p>
<p>
For a full list of changes in PHP 4.4.2, see the
<a href="/ChangeLog-4.php#4.4.2">ChangeLog</a>.
</p>
<?php site_footer(); ?>