Misc. repairs. In library.php, there is a new function:

tablePartnersItem() for use in partners.php
This commit is contained in:
Jeff Teunissen 2000-03-06 17:48:51 +00:00
parent 1731b4136c
commit f2ccd4914f
2 changed files with 11 additions and 4 deletions

View file

@ -39,11 +39,11 @@
}
$result = pg_close($conn);
} else {
tableBoxHeader("All News", 3, 'white', '#737b9c', 'black');
tableBoxHeader("All News", 1, 'white', '#737b9c', 'black');
$newsItem = '<P>Thanks to Deek we now have a brand new site layout which should be much more consistent.' .
'<P>In other news, the votes for the logo are still being submitted, but we should have something real soon now.';
tableNewsItem('06 Mar 2000', 'Mercury', $newsItem);
$newsItem = '<P>Because everyone in the core ignored the request for judges to make a request to participate on quake-private I will be the only judge.' .
'<P>Since there are many submissions and it will be hard for me to choose and keep everyone in and outside the group happy about it, I will be taking a couple days to think it over.';
tableNewsItem('02 Mar 2000', 'Palisade', $newsItem);
$newsItem = '<P>Knghtbrd, our stable release manager, has been instructed to lay off the Quack.. &lt;=:]';
tableNewsItem('27 Feb 2000', 'Mercury', $newsItem);

View file

@ -80,6 +80,13 @@
' <DD>' . $text . '</DD>' .
'</DL></TD></TR>';
}
function tablePartnersItem( $orgName, $orgUrl, $imgUrl, $text )
{
echo '<TR><TD><DL><DT>Posted on ' . $date . ' by ' . $user . '</DT>' .
' <DD>' . $text . '</DD>' .
'</DL></TD></TR>';
}
function tableSpacer( $height, $width, $cols, $bgColor )
{