mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 17:06:53 +02:00
Merge branch 'MDL-47037-master' of git://github.com/jethac/moodle
This commit is contained in:
commit
05a9873b89
3 changed files with 6 additions and 6 deletions
|
@ -62,8 +62,8 @@ if ($csv) {
|
|||
|
||||
// Paging
|
||||
$start = optional_param('start', 0, PARAM_INT);
|
||||
$sifirst = optional_param('sifirst', 'all', PARAM_ALPHA);
|
||||
$silast = optional_param('silast', 'all', PARAM_ALPHA);
|
||||
$sifirst = optional_param('sifirst', 'all', PARAM_NOTAGS);
|
||||
$silast = optional_param('silast', 'all', PARAM_NOTAGS);
|
||||
|
||||
// Whether to show extra user identity information
|
||||
$extrafields = get_extra_user_fields($context);
|
||||
|
|
|
@ -47,8 +47,8 @@ $csv = $format == 'csv' || $excel;
|
|||
|
||||
// Paging
|
||||
$start = optional_param('start', 0, PARAM_INT);
|
||||
$sifirst = optional_param('sifirst', 'all', PARAM_ALPHA);
|
||||
$silast = optional_param('silast', 'all', PARAM_ALPHA);
|
||||
$sifirst = optional_param('sifirst', 'all', PARAM_NOTAGS);
|
||||
$silast = optional_param('silast', 'all', PARAM_NOTAGS);
|
||||
$start = optional_param('start', 0, PARAM_INT);
|
||||
|
||||
// Whether to show extra user identity information
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue