forked from libsdl-org/sdlweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.php
37 lines (35 loc) · 1.39 KB
/
todo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<?php
require_once('include/nextver.inc.php');
$url = "https://github.com/libsdl-org/SDL/milestone/$github_milestone_id";
?>
<title>Simple DirectMedia Layer - Next release's TODO list!</title>
<meta http-equiv="Refresh" content="0; url=<?php print($url)?>">
<?php require_once("include/meta.inc.php"); ?><?php $current_page = basename(__FILE__, '.php'); ?>
</head>
<body>
<div id="wrapper">
<?php require_once("include/header.inc.php"); ?>
<div id="left">
<?php require_once("include/sidebar.inc.php"); ?>
</div>
<div id="content">
<h1>SDL <?php print($sdl_next_version); ?> TODO list</h1>
<p>
The next release of SDL is
<strong><?php print($next_sdl_version) ?>.</strong>
</p>
<p>
We are redirecting you to the TODO buglist for this
version now. If you aren't sent there automtically,
you can click <a href="<?php print($url); ?>">here</a>
instead.
</p>
</div>
<div class="clearer"></div>
</div>
<?php require_once("include/footer.inc.php"); ?>
</body>
</html>