From 75b4cefed52f31943008639e5e8081f5564e1ad2 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Fri, 13 Jul 2018 07:38:56 +1200 Subject: [PATCH] Fix #317 typo in html entity, and entities not rendering inside select options. --- locallib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locallib.php b/locallib.php index 57467b9..4a3a427 100644 --- a/locallib.php +++ b/locallib.php @@ -80,7 +80,7 @@ function attendance_get_setname($attid, $statusset, $includevalues = true) { if ($statusesout) { if (count($statusesout) > 6) { $statusesout = array_slice($statusesout, 0, 6); - $statusesout[] = '&helip;'; + $statusesout[] = '...'; } $statusesout = implode(' ', $statusesout); $statusname .= ' ('.$statusesout.')';