mirror of
https://github.com/php/web-bugs.git
synced 2026-03-23 23:32:07 +01:00
82 lines
3.0 KiB
PHP
82 lines
3.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>PHP :: <?= $this->e($title) ?></title>
|
|
<link rel="shortcut icon" href="<?= $siteScheme ?>://<?= $siteUrl ?>/images/favicon.ico">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<meta http-equiv="X-Frame-Options" content="SAMEORIGIN">
|
|
</head>
|
|
<body>
|
|
<table id="top" class="head" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td class="head-logo">
|
|
<a href="/"><img src="/images/logo.png" alt="Bugs" vspace="2" hspace="2"></a>
|
|
</td>
|
|
|
|
<td class="head-menu">
|
|
<a href="https://php.net/">php.net</a> |
|
|
<a href="https://php.net/support.php">support</a> |
|
|
<a href="https://php.net/docs.php">documentation</a> |
|
|
<a href="/report.php">report a bug</a> |
|
|
<a href="/search.php">advanced search</a> |
|
|
<a href="/search-howto.php">search howto</a> |
|
|
<a href="/stats.php">statistics</a> |
|
|
<a href="/random">random bug</a> |
|
|
<?php if ($authIsLoggedIn): ?>
|
|
<a href="/search.php?cmd=display&assign=<?= $this->e($authUsername) ?>">my bugs</a> |
|
|
<?php if ('developer' === $authRole): ?>
|
|
<a href="/admin/">admin</a> |
|
|
<?php endif ?>
|
|
<a href="/logout.php">logout</a>
|
|
<?php else: ?>
|
|
<a href="/login.php">login</a>
|
|
<?php endif ?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="head-search" colspan="2">
|
|
<form method="get" action="/search.php">
|
|
<p class="head-search">
|
|
<input type="hidden" name="cmd" value="display">
|
|
<small>go to bug id or search bugs for</small>
|
|
<input class="small" type="text" name="search_for" value="<?= $this->e($_GET['search_for'] ?? '') ?>" size="30">
|
|
<input type="image" src="/images/small_submit_white.gif" alt="search" style="vertical-align: middle;">
|
|
</p>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="middle" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td class="content">
|
|
<?= $this->block('content') ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="foot" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td class="foot-bar" colspan="2"> </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="foot-copy">
|
|
<small>
|
|
<a href="https://php.net/"><img src="/images/logo-small.gif" align="left" valign="middle" hspace="3" alt="PHP"></a>
|
|
<a href="https://php.net/copyright.php">Copyright © 2001-<?= date('Y') ?> The PHP Group</a><br>
|
|
All rights reserved.
|
|
</small>
|
|
</td>
|
|
<td class="foot-source">
|
|
<small>Last updated: <?= $lastUpdated ?></small>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<?= $this->block('scripts') ?>
|
|
</body>
|
|
</html>
|