diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc
index 5999dc5c..a868d534 100644
--- a/web/lib/pkgfuncs.inc
+++ b/web/lib/pkgfuncs.inc
@@ -297,7 +297,10 @@ function package_details($id=0, $SID="") {
print "
\n";
print " ";
- if ($row["Location"] == "unsupported" and $SID) {
+ if ($row["Location"] == "unsupported" and (
+ uid_from_sid($SID) == $row["MaintainerUID"] or
+ (account_from_sid($SID) == "Developer" or
+ account_from_sid($SID) == "Trusted User"))) {
$edit_cat = "".$row["Category"]."";
$edit_cat .= " (";
|