mirror of
https://git.code.sf.net/p/quake/website
synced 2025-01-18 22:51:37 +00:00
This should work..
This commit is contained in:
parent
5d0ec90c77
commit
1fb41193cc
5 changed files with 10 additions and 14 deletions
|
@ -1,11 +1,4 @@
|
|||
<?
|
||||
function newsItem( $date, $user, $text )
|
||||
{
|
||||
echo '<TR><TD><DL><DT>Posted on ' . $date . ' by ' . $user . '</DT>' .
|
||||
' <DD>' . $text . '</DD>' .
|
||||
'</DL></TD></TR>';
|
||||
}
|
||||
|
||||
$newsItem = '<P>A new <A href="http://quake.sourceforge.net/progress.php">State of the Code</A> address has been posted coitaining important information about support for MegaTF\'s upcoming Mega2k release. If you play MegaTF it is highly recommended that you read this less technical than usual SotC. Even if you don\'t play it, you probably should have a look. <EM>UPDATE: There\'s new info there, check it out</EM>';
|
||||
newsItem( '18 Mar 2000', 'Knghtbrd', $newsItem );
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
<?
|
||||
tableBoxHeader( 'black', $tableHeadColor );
|
||||
tableTitle( 'Latest News', 1, $tableHeadColor );
|
||||
include("news_funcs.php");
|
||||
include("cur_news.php");
|
||||
tableBoxFooter();
|
||||
?>
|
||||
|
|
1
news.php
1
news.php
|
@ -24,6 +24,7 @@
|
|||
<?
|
||||
tableBoxHeader( 'black', $tableHeadColor );
|
||||
tableTitle( 'All News', 1, $tableHeadColor );
|
||||
include("news_funcs.php");
|
||||
include("cur_news.php");
|
||||
include("old_news.php");
|
||||
tableBoxFooter();
|
||||
|
|
8
news_funcs.php
Normal file
8
news_funcs.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?
|
||||
function newsItem( $date, $user, $text )
|
||||
{
|
||||
echo '<TR><TD><DL><DT>Posted on ' . $date . ' by ' . $user . '</DT>' .
|
||||
' <DD>' . $text . '</DD>' .
|
||||
'</DL></TD></TR>';
|
||||
}
|
||||
?>
|
|
@ -1,11 +1,4 @@
|
|||
<?
|
||||
function newsItem( $date, $user, $text )
|
||||
{
|
||||
echo '<TR><TD><DL><DT>Posted on ' . $date . ' by ' . $user . '</DT>' .
|
||||
' <DD>' . $text . '</DD>' .
|
||||
'</DL></TD></TR>';
|
||||
}
|
||||
|
||||
$newsItem = '<P>It turns out that our newest core member, Dan Olson, was responsible for the Hexen <a href="http://www.raven-games.com/hhexen">port</a> to Linux.' .
|
||||
'<P>QuakeWorld Forever is considering hosting a mirror of the QuakeForge CVS in Australia for better access in that location.' .
|
||||
'<P>Jason Nelson has successfuly built all targets in win9x/NT/win2k, he\'s working on some glitches in some of the targets.' .
|
||||
|
|
Loading…
Reference in a new issue