mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-70412 groups: Improving create_group data generator
Increasing the size of the name for generated groups to ensure we don't have problems with ordering.
This commit is contained in:
parent
511a87f5fc
commit
9798fb06c8
@ -509,7 +509,7 @@ EOD;
|
||||
require_once($CFG->dirroot . '/group/lib.php');
|
||||
|
||||
$this->groupcount++;
|
||||
$i = $this->groupcount;
|
||||
$i = str_pad($this->groupcount, 4, '0', STR_PAD_LEFT);
|
||||
|
||||
$record = (array)$record;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user