mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
temp fix on old news as well
This commit is contained in:
parent
a303bd17c9
commit
8c4492d6ef
1 changed files with 30 additions and 29 deletions
59
old_news.php
59
old_news.php
|
@ -1,29 +1,30 @@
|
|||
<?
|
||||
$pageName = 'News Archives';
|
||||
$focused = "home"; // Dock icon name to get a border
|
||||
require("parts/preamble.php"); // Load most of document
|
||||
?>
|
||||
<!--NOSEARCH-->
|
||||
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
||||
<TR vAlign="top">
|
||||
<TD colSpan="2"><?
|
||||
tableBoxHeader( 'black', tableHeadColor );
|
||||
tableTitle( $pageName, 1, tableHeadColor );
|
||||
require ("news_funcs.php");
|
||||
if ($month || $year) {
|
||||
monthlyNews ($month, $year);
|
||||
} else {
|
||||
if ($string) {
|
||||
searchNews ($string);
|
||||
} else {
|
||||
newsItem ('now', 'Web Server', "You didn't specify a search, giving up.");
|
||||
}
|
||||
}
|
||||
tableBoxFooter ();
|
||||
?></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<!--NOSEARCH-->
|
||||
<?
|
||||
require("parts/postamble.php"); // Finish this sucker up
|
||||
?>
|
||||
<?
|
||||
$pageName = 'News Archives';
|
||||
$focused = "home"; // Dock icon name to get a border
|
||||
require("parts/preamble.php"); // Load most of document
|
||||
?>
|
||||
<!--NOSEARCH-->
|
||||
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
||||
<TR vAlign="top">
|
||||
<TD colSpan="2"><?
|
||||
tableBoxHeader( 'black', tableHeadColor );
|
||||
tableTitle( $pageName, 1, tableHeadColor );
|
||||
require ("lib/sql.php");
|
||||
require ("news_funcs.php");
|
||||
if ($month || $year) {
|
||||
monthlyNews ($month, $year);
|
||||
} else {
|
||||
if ($string) {
|
||||
searchNews ($string);
|
||||
} else {
|
||||
newsItem ('now', 'Web Server', "You didn't specify a search, giving up.");
|
||||
}
|
||||
}
|
||||
tableBoxFooter ();
|
||||
?></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<!--NOSEARCH-->
|
||||
<?
|
||||
require("parts/postamble.php"); // Finish this sucker up
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue