Skip to content

Commit

Permalink
Merge branch 'MDL-70412-311' of git://github.com/aanabit/moodle into …
Browse files Browse the repository at this point in the history
…MOODLE_311_STABLE
  • Loading branch information
andrewnicols committed Apr 22, 2021
2 parents bdd7f0a + e58d63f commit 2fb5cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/testing/generator/data_generator.php
Expand Up @@ -509,7 +509,7 @@ public function create_group($record) {
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;

Expand Down

0 comments on commit 2fb5cb7

Please sign in to comment.