From 8af0e1250a013f6a158bc251b6dbacd572236dd8 Mon Sep 17 00:00:00 2001 From: Artem Andreev Date: Sat, 16 Oct 2010 17:23:11 +0400 Subject: [PATCH] Fixed bug with printing attendance table for single user --- locallib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locallib.php b/locallib.php index c80b85f..9556c4a 100644 --- a/locallib.php +++ b/locallib.php @@ -308,7 +308,7 @@ function print_user_attendaces($user, $cm, $attforblock, $course = 0, $printing $where = "ats.courseid={$course->id} AND al.studentid = {$user->id}"; } - $stqry = "SELECT ats.sessdate,ats.description,al.statusid,al.remarks + $stqry = "SELECT ats.id,ats.sessdate,ats.description,al.statusid,al.remarks FROM {$CFG->prefix}attendance_log al JOIN {$CFG->prefix}attendance_sessions ats ON al.sessionid = ats.id";