mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 04:30:15 +01:00
NOBUG: Fixed conflict in iteration key name
This commit is contained in:
parent
4ecbf8568b
commit
f894b82c3b
@ -3363,7 +3363,7 @@ class moodle_core_renderer extends moodle_renderer_base {
|
||||
if (!($row instanceof html_table_row)) {
|
||||
$newrow = new html_table_row();
|
||||
|
||||
foreach ($row as $key => $item) {
|
||||
foreach ($row as $unused => $item) {
|
||||
$cell = new html_table_cell();
|
||||
$cell->text = $item;
|
||||
$newrow->cells[] = $cell;
|
||||
|
Loading…
x
Reference in New Issue
Block a user