diff --git a/web/html/packages.php b/web/html/packages.php index dc06c7e4..8f3b143d 100644 --- a/web/html/packages.php +++ b/web/html/packages.php @@ -10,6 +10,8 @@ check_sid(); # see if they're still logged in # Set the title to the current query if required if (isset($_GET['ID']) && ($pkgname = pkgname_from_id($_GET['ID']))) { $title = $pkgname; +} else if (isset($_GET['N'])) { + $title = $pkgname = $_GET['N']; } else if (!empty($_GET['K'])) { $title = __("Search Criteria") . ": " . $_GET['K']; } else { @@ -98,6 +100,18 @@ if (isset($_GET['ID'])) { package_details($_GET['ID'], null); } } +} else if (isset($_GET['N'])) { + include('pkg_search_form.php'); + if (!$pkgid = pkgid_from_name($_GET['N'])) { + print __("Error trying to retrieve package details.")."
\n"; + } else { + if (isset($_COOKIE["AURSID"])) { + package_details($pkgid, $_COOKIE["AURSID"]); + } + else { + package_details($pkgid, null); + } + } } else { if (!isset($_GET['K']) && !isset($_GET['SB'])) { $_GET['SB'] = 'v'; diff --git a/web/template/pkg_comments.php b/web/template/pkg_comments.php index aed9ca8b..ac6e1de9 100644 --- a/web/template/pkg_comments.php +++ b/web/template/pkg_comments.php @@ -36,7 +36,7 @@ while (list($indx, $carr) = each($comments)) { ?> 10 && !isset($_GET['comments'])) { echo '
'; echo ''. __('Show all %s comments', $count) . ''; diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index 046f836b..230cc2c6 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -2,7 +2,13 @@ $atype = account_from_sid($SID); $uid = uid_from_sid($SID); -$pkgid = intval($_REQUEST['ID']); +if (isset($_REQUEST['ID'])) { + $pkgid = intval($_REQUEST['ID']); +} +else { + $pkgid = pkgid_from_name($_REQUEST['N']); +} + if ($uid == $row["MaintainerUID"] or ($atype == "Developer" or $atype == "Trusted User")) {