- user web and notices: fix message describing friend request

svn path=/trunk/boinc/; revision=23378
This commit is contained in:
David Anderson 2011-04-18 23:41:53 +00:00
parent ac34ece602
commit a225fe12ba
2 changed files with 8 additions and 2 deletions

View File

@ -2300,3 +2300,9 @@ David 18 Apr 2011
client/
client_state.cpp
app_start.cpp
David 18 Apr 2011
- user web and notices: fix message describing friend request
html/inc/
friend.inc

View File

@ -21,7 +21,7 @@
function friend_notify_req_email_line($notify) {
$src_user = BoincUser::lookup_id($notify->opaque);
if (!$src_user) return "";
return "$src_user->name has added you as a friend; please confirm";
return "$src_user->name has requested friendship with you. Please accept or decline.";
}
function friend_notify_accept_email_line($notify) {
@ -94,7 +94,7 @@ Do not reply to this message.
function friend_req_rss($notify, &$title, &$msg, &$url) {
$src_user = BoincUser::lookup_id($notify->opaque);
$title = "Friend request";
$msg = "$src_user->name has added you as a friend; please confirm or decline";
$msg = "$src_user->name has requested friendship with you. Please accept or decline.";
$url = URL_BASE."friend.php?action=query&userid=$notify->opaque";
}