From 9a83e56b69bff3ef1921d3f8dab0b2daabb4d4c3 Mon Sep 17 00:00:00 2001 From: Callan Barrett Date: Thu, 3 Jan 2008 05:53:50 +0900 Subject: Adds support for TUs and devs to disown packages they do not own This is to add support for either devs or TUs to disown packages whether they own them or not. I know of countless times where I or another TU have been asked to orphan packages for someone and end up having to adopt the package first and then disown it, this gets really tedious for more than one package. As far as I can tell there's no other way to disown packages you don't own and if there is at least this is a more obvious way, pretty sure I didn't leave anything out in the patch. Signed-off-by: Callan Barrett --- web/lib/pkgfuncs.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'web/lib') diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index ad9630e..eaeeca8 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -492,7 +492,9 @@ function package_details($id=0, $SID="") { echo " value='".__("Adopt Packages")."'>\n"; } - if ($row["MaintainerUID"] == uid_from_sid($SID)) { + if ($row["MaintainerUID"] == uid_from_sid($SID) || + account_from_sid($SID) == "Trusted User" || + account_from_sid($SID) == "Developer") { echo "\n"; } -- cgit v1.2.3-54-g00ecf