diff options
author | simo <simo> | 2005-07-01 02:33:45 +0200 |
---|---|---|
committer | simo <simo> | 2005-07-01 02:33:45 +0200 |
commit | 3f7330d202e380cc240007746817d18ea6b635dc (patch) | |
tree | 315fd2a0994dae08c4691c91668c80358dd9f307 /web/html/index.php | |
parent | 01be3a4893ec16321473d772db777bc710c9df66 (diff) | |
download | aur-3f7330d202e380cc240007746817d18ea6b635dc.tar.gz aur-3f7330d202e380cc240007746817d18ea6b635dc.tar.xz |
Advertise RSS on main page and fixed guidelines CSS
Diffstat (limited to 'web/html/index.php')
-rw-r--r-- | web/html/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/index.php b/web/html/index.php index da4a351d..ac5026b3 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -90,7 +90,7 @@ $q.= "WHERE DummyPkg != 1 "; $q.= "ORDER BY SubmittedTS DESC "; $q.= "LIMIT 0 , 10"; $result = db_query($q,$dbh); -print '<table cellspacing="2" class="boxSoft"><tr><td class="boxSoftTitle" align="right"><span class="f3">'.__("Recent Updates").'</span> </td> </tr><tr><td class="boxSoft"><table style="width: 100%" cellspacing=0 cellpadding=0>'."\n"; +print '<table cellspacing="2" class="boxSoft"><tr><td class="boxSoftTitle" align="right"><span class="f3">'.__("Recent Updates").'<sub>(<a href="/rss2.php">rss</a>)</sub></span> </td> </tr><tr><td class="boxSoft"><table style="width: 100%" cellspacing=0 cellpadding=0>'."\n"; while ($row = mysql_fetch_assoc($result)) { print '<tr><td><span class="f4"><span class="blue">- <a href="/packages.php?do_Details=1&ID='.intval($row["ID"]).'">'; print $row["Name"]." ".$row["Version"]."</a></span></span>"; |