diff options
author | Philip Häusler <msquare@notrademark.de> | 2015-08-14 14:06:33 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2015-08-14 14:06:33 +0200 |
commit | e8daa4d2ce91a5376b3770a8cd60385339b67a81 (patch) | |
tree | 5b1b0ce3132231ce02c71b0723587ee5dbaa1a9c /includes/view | |
parent | 18e49ee06af09894299f262e29d19e7fac419f53 (diff) |
add table of needed shirts to user active page
Diffstat (limited to 'includes/view')
-rw-r--r-- | includes/view/User_view.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/view/User_view.php b/includes/view/User_view.php index 99a70ba9..3ab5f816 100644 --- a/includes/view/User_view.php +++ b/includes/view/User_view.php @@ -268,7 +268,7 @@ function User_angeltypes_render($user_angeltypes) { $class = 'text-warning'; else $class = 'text-success'; - $output[] = '<span class="' . $class . '">' . ($angeltype['coordinator'] ? '<span class="glyphicon glyphicon-certificate"></span> ' : '') . $angeltype['name'] . '</span>'; + $output[] = '<span class="' . $class . '">' . ($angeltype['coordinator'] ? glyph('education') : '') . $angeltype['name'] . '</span>'; } return join('<br />', $output); } |