Browse Source

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

MOODLE_31_STABLE
Dan Marsden 7 years ago
parent
commit
75b4cefed5
  1. 2
      locallib.php

2
locallib.php

@ -80,7 +80,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