summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-12-12 18:25:10 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2015-12-13 10:22:58 +0100
commit5931d5ceec133ad1eee33faee96be061e011dacd (patch)
tree9195e3443c36d342b673d9470ee7bd79d4274ec2 /web
parentb8c1cd7cc3270563ef0c4abed930a9f63e1eefce (diff)
downloadaur-5931d5ceec133ad1eee33faee96be061e011dacd.tar.gz
aur-5931d5ceec133ad1eee33faee96be061e011dacd.tar.xz
Save comment when closing requests
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web')
-rw-r--r--web/lib/pkgreqfuncs.inc.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/lib/pkgreqfuncs.inc.php b/web/lib/pkgreqfuncs.inc.php
index 3ea46926..c1a49311 100644
--- a/web/lib/pkgreqfuncs.inc.php
+++ b/web/lib/pkgreqfuncs.inc.php
@@ -227,7 +227,8 @@ function pkgreq_close($id, $reason, $comments, $auto_close=false) {
return array(false, __("Only TUs and developers can close requests."));
}
- $q = "UPDATE PackageRequests SET Status = " . intval($status) . " ";
+ $q = "UPDATE PackageRequests SET Status = " . intval($status) . ", ";
+ $q.= "ClosureComment = " . $dbh->quote($comments) . " ";
$q.= "WHERE ID = " . intval($id);
$dbh->exec($q);