diff options
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 617b16a..7e04d59 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 1600e41..143fbdf 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"); |