Skip to content

Commit 2c1e588

Browse files
committed
Exercise : Fix sortable in exercise reporting and clean with cs-fixer - refs BT#19872
1 parent baa1d91 commit 2c1e588

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

main/gradebook/gradebook_display_certificate.php

-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,6 @@ function confirmation() {
336336
);
337337
echo $certificateUrl.PHP_EOL;
338338
if ($hideCertificateExport !== 'true') {
339-
340339
$url .= '&action=export';
341340
$pdf = Display::url(
342341
Display::return_icon('pdf.png', get_lang('Download')),

main/gradebook/lib/be/category.class.php

-2
Original file line numberDiff line numberDiff line change
@@ -2525,8 +2525,6 @@ public function setGradeBooksToValidateInDependence($value)
25252525

25262526
/**
25272527
* Return HTML code with links to download and view certificate.
2528-
*
2529-
* @return string
25302528
*/
25312529
public static function getDownloadCertificateBlock(array $certificate): string
25322530
{

main/inc/ajax/model.ajax.php

+3
Original file line numberDiff line numberDiff line change
@@ -1638,6 +1638,9 @@ function getWhereClause($col, $oper, $val)
16381638
'status',
16391639
'lp',
16401640
'actions',
1641+
'exe_result',
1642+
'revised',
1643+
'orig_lp_id',
16411644
];
16421645
$officialCodeInList = api_get_setting('show_official_code_exercise_result_list');
16431646
if ($officialCodeInList === 'true') {

0 commit comments

Comments
 (0)