diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-01 20:06:41 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-01 20:06:41 +0200 |
commit | 0d513e1468d3f37ebdc4e237ccb1855fc6d273a2 (patch) | |
tree | 65cfb3988e0ff92eabd5dde309bb87fc4aeba76c /web/html/pkgbase.php | |
parent | 707b1bb8788a272f0365baf99d9ef539655939a8 (diff) | |
download | aur-0d513e1468d3f37ebdc4e237ccb1855fc6d273a2.tar.gz aur-0d513e1468d3f37ebdc4e237ccb1855fc6d273a2.tar.xz |
Be explicit about accepted requests in emails
When sending notification emails after closing a request, be explicit
about whether the request has been accepted or not.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/pkgbase.php')
-rw-r--r-- | web/html/pkgbase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/pkgbase.php b/web/html/pkgbase.php index 6fdaf403..adc61180 100644 --- a/web/html/pkgbase.php +++ b/web/html/pkgbase.php @@ -99,7 +99,7 @@ if (check_token()) { } elseif (current_action("do_FileRequest")) { list($ret, $output) = pkgreq_file($ids, $_POST['type'], $_POST['merge_into'], $_POST['comments']); } elseif (current_action("do_CloseRequest")) { - list($ret, $output) = pkgreq_close($_POST['reqid']); + list($ret, $output) = pkgreq_close($_POST['reqid'], false); } if (isset($_REQUEST['comment'])) { |