summaryrefslogtreecommitdiffstats
path: root/web/lib/pkgreqfuncs.inc.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-07-01 20:06:41 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-07-01 20:06:41 +0200
commit0d513e1468d3f37ebdc4e237ccb1855fc6d273a2 (patch)
tree65cfb3988e0ff92eabd5dde309bb87fc4aeba76c /web/lib/pkgreqfuncs.inc.php
parent707b1bb8788a272f0365baf99d9ef539655939a8 (diff)
downloadaurweb-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/lib/pkgreqfuncs.inc.php')
-rw-r--r--web/lib/pkgreqfuncs.inc.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/web/lib/pkgreqfuncs.inc.php b/web/lib/pkgreqfuncs.inc.php
index 69ba08d..26d543e 100644
--- a/web/lib/pkgreqfuncs.inc.php
+++ b/web/lib/pkgreqfuncs.inc.php
@@ -126,10 +126,11 @@ function pkgreq_file($ids, $type, $merge_into, $comments) {
* @global string $AUR_LOCATION The AUR's URL used for notification e-mails
* @global string $AUR_REQUEST_ML The request notification mailing list
* @param int $id The package request to close
+ * @param bool $accepted True if the request has been accepted, false otherwise
*
* @return array Tuple of success/failure indicator and error message
*/
-function pkgreq_close($id) {
+function pkgreq_close($id, $accepted) {
global $AUR_LOCATION;
global $AUR_REQUEST_ML;
@@ -167,7 +168,9 @@ function pkgreq_close($id) {
* user who posted the comment was in.
*/
$username = username_from_sid($_COOKIE['AURSID']);
- $body = $username . " [1] closed request #" . intval($id) . ".\n\n" .
+ $body = "Request #" . intval($id) . " has been " .
+ ($accepted ? "accepted" : "closed") . " by " .
+ $username . " [1].\n\n" .
"[1] " . $AUR_LOCATION . get_user_uri($username) . "\n";
$body = wordwrap($body, 70);
$headers = "MIME-Version: 1.0\r\n" .