1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Add missing title *only* to announcement page

This commit is contained in:
Christoph M. Becker
2020-09-03 13:20:34 +02:00
parent 4186840cc5
commit 37f8312ca2

View File

@@ -30,8 +30,6 @@ $security = isset($opts['security']) ? 'security' : 'bug fix';
// Create content.
$template = <<<EOD
<h1>PHP $version Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP $version. This is a $security release.</p>
<p>All PHP $branch users are encouraged to upgrade to this version.</p>
@@ -61,6 +59,8 @@ if (isset($opts['r'])) {
include_once __DIR__ . '/../include/prepend.inc';
site_header('PHP $version Release Announcement');
?>
<h1>PHP $version Release Announcement</h1>
$template
<?php site_footer();
");