MDL-48765 enrol: do not use a non-breaking space as a separator

This commit is contained in:
Charles Fulton 2015-01-07 08:12:41 -08:00
parent eb1dc9fab9
commit 671d105e9f

View File

@ -268,8 +268,8 @@ foreach ($instances as $instance) {
}
}
// add a row to the table
$table->data[] = array($displayname, $users, implode(' ', $updown), implode(' ', $edit));
// Add a row to the table.
$table->data[] = array($displayname, $users, implode('', $updown), implode('', $edit));
}
echo html_writer::table($table);