diff options
author | Callan Barrett <wizzomafizzo@gmail.com> | 2008-01-15 07:54:23 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-20 07:21:21 +0100 |
commit | 8ab823728c729e9780820bf15aad3585078c8342 (patch) | |
tree | 4873eec0eb010b46836c07f73d78b842ce679705 /web/html | |
parent | 2f56688b56757a3365ee4cc48f1bd139216c74f9 (diff) | |
download | aur-8ab823728c729e9780820bf15aad3585078c8342.tar.gz aur-8ab823728c729e9780820bf15aad3585078c8342.tar.xz |
More cleanup, add TU link to header
Cleans up links on front page, adds a TU link to the header to the voting
application, fixes some titles and styling for logged in text
Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/index.php | 2 | ||||
-rw-r--r-- | web/html/packages.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/html/index.php b/web/html/index.php index 617b16a3..7e04d59e 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -52,7 +52,7 @@ while ($row = mysql_fetch_assoc($result)) { print '<tr>'; print '<td class="boxSoft">'; - print '<span class="f4"><span class="blue"><a href="/packages.php?do_Details=1&ID='.intval($row["ID"]).'">'; + print '<span class="f4"><span class="blue"><a href="/packages.php?ID='.intval($row["ID"]).'">'; print $row["Name"]." ".$row["Version"]."</a></span></span>"; print '</td>'; diff --git a/web/html/packages.php b/web/html/packages.php index 1600e41c..143fbdf6 100644 --- a/web/html/packages.php +++ b/web/html/packages.php @@ -16,7 +16,7 @@ if (isset($_GET['ID'])) { if (!empty($id)) { $title = $id; } -} else if (isset($_GET['K'])) { +} else if (!empty($_GET['K'])) { $title = "Search: " . $_GET['K']; } else if (isset($_GET['do_MyPackages'])) { $title = __("My Packages"); |