From 671d105e9f0fde35c937e32203b9a9d8f58e5089 Mon Sep 17 00:00:00 2001 From: Charles Fulton Date: Wed, 7 Jan 2015 08:12:41 -0800 Subject: [PATCH] MDL-48765 enrol: do not use a non-breaking space as a separator --- enrol/instances.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enrol/instances.php b/enrol/instances.php index 8514a0c64f9..ec95e755383 100644 --- a/enrol/instances.php +++ b/enrol/instances.php @@ -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);