Skip to content

Commit

Permalink
MDL-48765 enrol: do not use a non-breaking space as a separator
Browse files Browse the repository at this point in the history
  • Loading branch information
mackensen committed Jan 7, 2015
1 parent eb1dc9f commit 671d105
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions enrol/instances.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@
}
}

// 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);
Expand Down

0 comments on commit 671d105

Please sign in to comment.