MDL-53936 reports: State default index page explicitly in pagination url

This commit is contained in:
Luca Bösch 2017-08-29 07:33:21 +02:00
parent b3cfb01316
commit 30375ee99f

View File

@ -157,7 +157,7 @@ if ($csv) {
echo $OUTPUT->header();
// Handle groups (if enabled)
groups_print_course_menu($course, $CFG->wwwroot.'/report/completion/?course='.$course->id);
groups_print_course_menu($course, $CFG->wwwroot.'/report/completion/index.php?course='.$course->id);
}
if ($sifirst !== 'all') {
@ -222,7 +222,7 @@ if ($total) {
}
// Build link for paging
$link = $CFG->wwwroot.'/report/completion/?course='.$course->id;
$link = $CFG->wwwroot.'/report/completion/index.php?course='.$course->id;
if (strlen($sort)) {
$link .= '&sort='.$sort;
}
@ -428,10 +428,10 @@ if (!$csv) {
if ($firstnamesort) {
print
get_string('firstname')." / <a href=\"./?course={$course->id}{$sistring}\">".
get_string('firstname')." / <a href=\"./index.php?course={$course->id}{$sistring}\">".
get_string('lastname').'</a>';
} else {
print "<a href=\"./?course={$course->id}&amp;sort=firstname{$sistring}\">".
print "<a href=\"./index.php?course={$course->id}&amp;sort=firstname{$sistring}\">".
get_string('firstname').'</a> / '.
get_string('lastname');
}