summaryrefslogtreecommitdiffstats
path: root/web/html/packages.php
diff options
context:
space:
mode:
authorCallan Barrett <wizzomafizzo@gmail.com>2008-01-03 05:53:50 +0900
committerDan McGee <dan@archlinux.org>2008-01-20 00:21:19 -0600
commit9a83e56b69bff3ef1921d3f8dab0b2daabb4d4c3 (patch)
treefd04b21f29daf8a0e0071b78a9bbd863e9b65552 /web/html/packages.php
parent5f4afcc8cb6dcc5dcbe4d5161fad5372eb5f6435 (diff)
downloadaurweb-9a83e56b69bff3ef1921d3f8dab0b2daabb4d4c3.tar.xz
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 <wizzomafizzo@gmail.com>
Diffstat (limited to 'web/html/packages.php')
-rw-r--r--web/html/packages.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/web/html/packages.php b/web/html/packages.php
index 95b5979..85ab6b7 100644
--- a/web/html/packages.php
+++ b/web/html/packages.php
@@ -171,7 +171,10 @@ if (isset($_REQUEST["do_Flag"])) {
$q = "UPDATE Packages ";
$q.= "SET ".$field." = 0 ";
$q.= "WHERE ID IN (" . $disown . ") ";
- $q.= "AND ".$field." = ".uid_from_sid($_COOKIE["AURSID"]);
+ # If a user is a TU or dev they can disown any package
+ if ($atype == "User") {
+ $q.= "AND ".$field." = ".uid_from_sid($_COOKIE["AURSID"]);
+ }
db_query($q, $dbh);
}