From 0d513e1468d3f37ebdc4e237ccb1855fc6d273a2 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 1 Jul 2014 20:06:41 +0200 Subject: 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 --- web/html/pkgbase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/html') 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'])) { -- cgit v1.2.3-24-g4f1b