diff options
Diffstat (limited to 'classes')
| -rw-r--r-- | classes/Pref_Filters.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Pref_Filters.php b/classes/Pref_Filters.php index 9b11284b4..3a51a011b 100644 --- a/classes/Pref_Filters.php +++ b/classes/Pref_Filters.php @@ -773,7 +773,7 @@ class Pref_Filters extends Handler_Protected { $actions_summary = array_slice($actions_summary, 0, self::MAX_ACTIONS_TO_DISPLAY); array_push($actions_summary, - sprintf(_ngettext("(+%d action)", "(+%d actions)", $actions_not_shown), $actions_not_shown)); + "<em class='text-muted'>" . sprintf(_ngettext("(+%d action)", "(+%d actions)", $actions_not_shown), $actions_not_shown)) . "</em>"; } return [implode(", ", $title_summary), implode("<br/>", $actions_summary)]; |