summaryrefslogtreecommitdiffstats
path: root/web/lib/pkgbasefuncs.inc.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-07-04 10:40:29 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-07-04 11:10:37 +0200
commit8a465182babccec10b8e789dbc871db3beb9bec5 (patch)
tree135ca7f54ec901fc498c77dbfab9486df5080a9b /web/lib/pkgbasefuncs.inc.php
parent61d70c1fa5f0ed9cfe4708a4630fbf959da2d781 (diff)
downloadaurweb-8a465182babccec10b8e789dbc871db3beb9bec5.tar.xz
Allow for selecting a reason when closing a request
When closing a package request, Trusted Users can now pick a reason ("Accepted" or "Rejected"). This allows for marking a request as accepted, even if the corresponding package base has already been deleted. Also, the notification email now always explicitly states whether a request has been accepted or closed in the message body. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/lib/pkgbasefuncs.inc.php')
-rw-r--r--web/lib/pkgbasefuncs.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/lib/pkgbasefuncs.inc.php b/web/lib/pkgbasefuncs.inc.php
index 0ee2c31..4c1f452 100644
--- a/web/lib/pkgbasefuncs.inc.php
+++ b/web/lib/pkgbasefuncs.inc.php
@@ -540,7 +540,7 @@ function pkgbase_delete ($atype, $base_ids, $merge_base_id, $via) {
$dbh->exec($q);
if ($via) {
- pkgreq_close(intval($via), true);
+ pkgreq_close(intval($via), 'accepted');
}
return array(true, __("The selected packages have been deleted."));
@@ -598,7 +598,7 @@ function pkgbase_adopt ($atype, $base_ids, $action=true, $via) {
$dbh->exec($q);
if ($via) {
- pkgreq_close(intval($via), true);
+ pkgreq_close(intval($via), 'accepted');
}
if ($action) {