summaryrefslogtreecommitdiffstats
path: root/web/html/pkgedit.php
diff options
context:
space:
mode:
authorsimo <simo>2005-06-10 01:40:22 +0000
committersimo <simo>2005-06-10 01:40:22 +0000
commit45e5883a1579ef64071d161a216e7159bfab1daf (patch)
tree72ea6b317a735a5378cdaa5d1cc42ca5067597fd /web/html/pkgedit.php
parent6adf639a341b8954e911fce2d2bd3e7443a1426c (diff)
downloadaurweb-45e5883a1579ef64071d161a216e7159bfab1daf.tar.xz
Added newpackage-notify to finally implement
new package notifications that people can ask for on their user page. This script should run on a daily cronjob. A few spelling stupidity fixes as well.
Diffstat (limited to 'web/html/pkgedit.php')
-rw-r--r--web/html/pkgedit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/pkgedit.php b/web/html/pkgedit.php
index ae0170b..3a6dc99 100644
--- a/web/html/pkgedit.php
+++ b/web/html/pkgedit.php
@@ -93,7 +93,7 @@ if ($_REQUEST["add_Comment"]) {
$q.= "WHERE Packages.ID = ".intval($_REQUEST["ID"]);
$result = db_query($q, $dbh);
$row = mysql_fetch_assoc($result);
- $body = __("A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou recieved this e-mail because you chose to recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control.",array($row['Name'],$_REQUEST["ID"]));
+ $body = __("A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou received this e-mail because you chose to recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control.",array($row['Name'],$_REQUEST["ID"]));
$body = wordwrap($body, 70);
$bcc = implode(', ', $bcc);
$headers = "Bcc: $bcc\nReply-to: nobody@archlinux.org\nFrom:aur-notify@archlinux.org\nX-Mailer: PHP\nX-MimeOLE: Produced By AUR\n";