From 2072af6c1dbe706ef8d679c71185ebb133c8fbbd Mon Sep 17 00:00:00 2001 From: Mark Nelson Date: Tue, 29 Oct 2013 16:41:46 +0800 Subject: [PATCH] MDL-42592 mod_chat: passed additional name fields to be used by the fullname function --- mod/chat/lib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/chat/lib.php b/mod/chat/lib.php index c51d33ee34e..e3ad93d1fac 100644 --- a/mod/chat/lib.php +++ b/mod/chat/lib.php @@ -360,7 +360,8 @@ function chat_print_recent_activity($course, $viewfullnames, $timestart) { $groupselect = ""; } - if (!$users = $DB->get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email, u.picture + $userfields = user_picture::fields('u'); + if (!$users = $DB->get_records_sql("SELECT $userfields FROM {course_modules} cm JOIN {chat} ch ON ch.id = cm.instance JOIN {chat_users} chu ON chu.chatid = ch.id -- 2.43.0