mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
MDL-30828 mod_feedback: fixed sorting when viewing responses
This commit is contained in:
parent
216f6d8e9d
commit
a5448b3f6b
2 changed files with 2 additions and 2 deletions
|
@ -958,7 +958,7 @@ function feedback_get_complete_users($cm,
|
|||
}
|
||||
|
||||
$ufields = user_picture::fields('u');
|
||||
$sql = 'SELECT DISTINCT '.$ufields.'
|
||||
$sql = 'SELECT DISTINCT '.$ufields.', c.timemodified as completed_timemodified
|
||||
FROM {user} u, {feedback_completed} c '.$fromgroup.'
|
||||
WHERE '.$where.' anonymous_response = :anon
|
||||
AND u.id = c.userid
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue