Skip to content

Commit

Permalink
MDL-61877 core_competency: False negative due to random ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
FMCorz authored and David Monllao committed May 4, 2018
1 parent bdf271d commit 9967731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion competency/classes/privacy/provider.php
Expand Up @@ -770,7 +770,7 @@ protected static function export_user_data_in_course_contexts_rated_by_me($useri
ON ctx.id = f.contextid
WHERE ucc.usermodified = :userid
AND ucc.courseid $insql
ORDER BY ucc.courseid";
ORDER BY ucc.courseid, ucc.id";
$params = array_merge($inparams, ['userid' => $userid]);

// Export the data.
Expand Down

0 comments on commit 9967731

Please sign in to comment.