Merge branch 'MDL-30683_21' of git://github.com/timhunt/moodle into MOODLE_21_STABLE
This commit is contained in:
@@ -298,15 +298,16 @@ abstract class quiz_attempt_report extends quiz_default_report {
|
||||
* @param object $quiz the quiz settings.
|
||||
* @param array $columns the list of columns. Added to.
|
||||
* @param array $headers the columns headings. Added to.
|
||||
* @param bool $includefeedback whether to include the feedbacktext columns
|
||||
*/
|
||||
protected function add_grade_columns($quiz, &$columns, &$headers) {
|
||||
protected function add_grade_columns($quiz, &$columns, &$headers, $includefeedback = true) {
|
||||
if ($this->should_show_grades($quiz)) {
|
||||
$columns[] = 'sumgrades';
|
||||
$headers[] = get_string('grade', 'quiz') . '/' .
|
||||
quiz_format_grade($quiz, $quiz->grade);
|
||||
}
|
||||
|
||||
if (quiz_has_feedback($quiz)) {
|
||||
if ($includefeedback && quiz_has_feedback($quiz)) {
|
||||
$columns[] = 'feedbacktext';
|
||||
$headers[] = get_string('feedback', 'quiz');
|
||||
}
|
||||
|
||||
@@ -319,7 +319,7 @@ class quiz_overview_report extends quiz_attempt_report {
|
||||
$headers[] = get_string('regrade', 'quiz_overview');
|
||||
}
|
||||
|
||||
$this->add_grade_columns($quiz, $columns, $headers);
|
||||
$this->add_grade_columns($quiz, $columns, $headers, false);
|
||||
|
||||
$this->set_up_table_columns(
|
||||
$table, $columns, $headers, $reporturl, $displayoptions, false);
|
||||
|
||||
Reference in New Issue
Block a user