[Wuug-cvs] wuug archives.php,1.3,1.4
Status: Inactive
Brought to you by:
loginx
From: <lo...@us...> - 2003-04-05 21:16:17
|
Update of /cvsroot/wuug/wuug In directory sc8-pr-cvs1:/tmp/cvs-serv22646 Modified Files: archives.php Log Message: archiving support Index: archives.php =================================================================== RCS file: /cvsroot/wuug/wuug/archives.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** archives.php 5 Apr 2003 21:14:22 -0000 1.3 --- archives.php 5 Apr 2003 21:16:15 -0000 1.4 *************** *** 5,9 **** $events = new NewsClass(); ! if (!$_GET[item]) { $ids = $events->getAll(); --- 5,20 ---- $events = new NewsClass(); ! if ($_GET[item]) { ! $events->detailedView($_GET[item]); ! } ! ! ?> ! <table cellpadding="2" cellspacing="0" border="0" width="75%" align="center"> ! <tr> ! <td bgcolor="#505050" colspan="2" align="center"><b><font color="#ffffff">Previous Archives</font></b></td> ! </tr> ! </table> ! <?php ! $ids = $events->getAll(); *************** *** 12,17 **** $events->shortView($ids[$i][id]); } ! } else { ! $events->detailedView($_GET[item]); ! } ?> --- 23,26 ---- $events->shortView($ids[$i][id]); } ! ?> |