diff options
Diffstat (limited to 'web/lib/pkgreqfuncs.inc.php')
-rw-r--r-- | web/lib/pkgreqfuncs.inc.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/lib/pkgreqfuncs.inc.php b/web/lib/pkgreqfuncs.inc.php index 61d619b..005825f 100644 --- a/web/lib/pkgreqfuncs.inc.php +++ b/web/lib/pkgreqfuncs.inc.php @@ -125,7 +125,7 @@ function pkgreq_file($ids, $type, $merge_into, $comments) { * Send e-mail notifications. * TODO: Move notification logic to separate function where it belongs. */ - $bcc = array(pkgreq_get_creator_email($request_id)); + $cc = array(pkgreq_get_creator_email($request_id)); $q = "SELECT Users.Email "; $q.= "FROM Users INNER JOIN PackageBases "; @@ -133,7 +133,7 @@ function pkgreq_file($ids, $type, $merge_into, $comments) { $q.= "WHERE PackageBases.ID = " . intval($base_id); $result = $dbh->query($q); if ($row = $result->fetch(PDO::FETCH_ASSOC)) { - $bcc[] = $row['Email']; + $cc[] = $row['Email']; } $q = "SELECT Name FROM PackageBases WHERE ID = "; @@ -156,7 +156,7 @@ function pkgreq_file($ids, $type, $merge_into, $comments) { $body = wordwrap($body, 70); $headers = "MIME-Version: 1.0\r\n" . "Content-type: text/plain; charset=UTF-8\r\n" . - "Bcc: " . implode(', ', $bcc) . "\r\n"; + "Cc: " . implode(', ', $cc) . "\r\n"; $thread_id = "<pkg-request-" . $request_id . "@aur.archlinux.org>"; $headers .= "From: notify@aur.archlinux.org\r\n" . "Message-ID: $thread_id\r\n" . @@ -209,7 +209,7 @@ function pkgreq_close($id, $reason, $comments) { * Send e-mail notifications. * TODO: Move notification logic to separate function where it belongs. */ - $bcc = array(pkgreq_get_creator_email($id)); + $cc = array(pkgreq_get_creator_email($id)); $q = "SELECT Users.Email "; $q.= "FROM Users INNER JOIN PackageBases "; @@ -219,7 +219,7 @@ function pkgreq_close($id, $reason, $comments) { $q.= "WHERE PackageRequests.ID = " . $id; $result = $dbh->query($q); if ($row = $result->fetch(PDO::FETCH_ASSOC)) { - $bcc[] = $row['Email']; + $cc[] = $row['Email']; } /* @@ -240,7 +240,7 @@ function pkgreq_close($id, $reason, $comments) { $body = wordwrap($body, 70); $headers = "MIME-Version: 1.0\r\n" . "Content-type: text/plain; charset=UTF-8\r\n" . - "Bcc: " . implode(', ', $bcc) . "\r\n"; + "Cc: " . implode(', ', $cc) . "\r\n"; $thread_id = "<pkg-request-" . $id . "@aur.archlinux.org>"; $headers .= "From: notify@aur.archlinux.org\r\n" . "In-Reply-To: $thread_id\r\n" . |