Skip to content

Commit

Permalink
Merge branch 'MDL-25884' of git://github.com/timhunt/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hemelryk committed Jan 24, 2011
2 parents 34b6817 + 151c228 commit ab8bc2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod/quiz/index.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@
SELECT qg.quiz, qg.grade SELECT qg.quiz, qg.grade
FROM {quiz_grades} qg FROM {quiz_grades} qg
JOIN {quiz} q ON q.id = qg.quiz JOIN {quiz} q ON q.id = qg.quiz
WHERE q.course = ?', WHERE q.course = ? AND qg.userid = ?',
$course->id); array($course->id, $USER->id));
} }


$table = new html_table(); $table = new html_table();
Expand Down

0 comments on commit ab8bc2e

Please sign in to comment.