#192 Fixed report fields for download

This commit is contained in:
Roberto Pinna 2018-05-24 11:30:50 +02:00 committed by Mark Nelson
parent 234b36f0c0
commit 6c21cd41cb

View file

@ -86,7 +86,7 @@ class report_table extends \table_sql {
$headers[] = get_string('file');
}
if (has_capability('mod/customcert:manage', \context_module::instance($cm->id))) {
if (!$this->is_downloading() && has_capability('mod/customcert:manage', \context_module::instance($cm->id))) {
$columns[] = 'actions';
$headers[] = '';
}
@ -113,7 +113,11 @@ class report_table extends \table_sql {
public function col_fullname($user) {
global $OUTPUT;
return $OUTPUT->user_picture($user) . ' ' . fullname($user);
if (!$this->is_downloading()) {
return $OUTPUT->user_picture($user) . ' ' . fullname($user);
} else {
return fullname($user);
}
}
/**