diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-03-22 09:38:18 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-03-24 10:34:35 +0100 |
commit | cf2f66751238a5c956c69d3852df74c8e9bbbe52 (patch) | |
tree | b50d764d9cfd11c1d4e0ef1b14e92807320cc57f /web/template/pkg_details.php | |
parent | 132856a9383776d7e7788620df656db9fbd9883a (diff) |
Support canonical links to packages
This is more user-friendly than supporting package IDs only and can be
used as a basis to support direct links to AUR packages in places where
links are computer-produced (e.g. Wiki templates).
Addresses FS#21600 and FS#28839.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/pkg_details.php')
-rw-r--r-- | web/template/pkg_details.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index 046f836..230cc2c 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")) { |