Browse Source

Fix #317 typo in html entity, and entities not rendering inside select options.

MOODLE_35_STABLE
Dan Marsden 7 years ago
parent
commit
df9edb01a7
  1. 2
      locallib.php

2
locallib.php

@ -95,7 +95,7 @@ function attendance_get_setname($attid, $statusset, $includevalues = true) {
if ($statusesout) { if ($statusesout) {
if (count($statusesout) > 6) { if (count($statusesout) > 6) {
$statusesout = array_slice($statusesout, 0, 6); $statusesout = array_slice($statusesout, 0, 6);
$statusesout[] = '&helip;'; $statusesout[] = '...';
} }
$statusesout = implode(' ', $statusesout); $statusesout = implode(' ', $statusesout);
$statusname .= ' ('.$statusesout.')'; $statusname .= ' ('.$statusesout.')';

Loading…
Cancel
Save