From 3ce776ba814c306354414ea6c88668d50c2f1f60 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 30 Dec 2007 22:30:31 +0000 Subject: [PATCH] - web: bug fix in notification digest email svn path=/trunk/boinc/; revision=14448 --- html/inc/friend.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/inc/friend.inc b/html/inc/friend.inc index 7cbc2d2a7e..cb86772d38 100644 --- a/html/inc/friend.inc +++ b/html/inc/friend.inc @@ -3,7 +3,7 @@ // The following two are what gets put into notification email digests // function friend_notify_req_email_line($notify) { - $src_user = BoincUser::lookup($notify->opaque); + $src_user = BoincUser::lookup_id($notify->opaque); if (!$src_user) return ""; return "$src_user->name has added you as a friend; please confirm"; }