summaryrefslogtreecommitdiff
path: root/includes/view/ShiftCalendarShiftRenderer.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-09-20 01:24:56 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2017-09-20 01:24:56 +0200
commit5b12eecdd63dd6fc64e988cd2ff6b5fb89d10429 (patch)
tree4504f04219572069f401d2cf14a85fced8485b87 /includes/view/ShiftCalendarShiftRenderer.php
parent3141c3f8b5fd1a45d337c1f5540cb715a5a7dbbf (diff)
parente1d44e60e35d126dbd05aefa5f897fad16fbfceb (diff)
Merge remote-tracking branch 'engelsystem/feature-igel-rewrite'
Diffstat (limited to 'includes/view/ShiftCalendarShiftRenderer.php')
-rw-r--r--includes/view/ShiftCalendarShiftRenderer.php14
1 files changed, 6 insertions, 8 deletions
diff --git a/includes/view/ShiftCalendarShiftRenderer.php b/includes/view/ShiftCalendarShiftRenderer.php
index 0e5fc8c3..3e59d61a 100644
--- a/includes/view/ShiftCalendarShiftRenderer.php
+++ b/includes/view/ShiftCalendarShiftRenderer.php
@@ -124,14 +124,12 @@ class ShiftCalendarShiftRenderer
}
if (in_array('user_shifts_admin', $privileges)) {
- $html .= '<li class="list-group-item">' . _('Add more angels') . ':';
- foreach ($needed_angeltypes as $angeltype) {
- $html .= ' ' . button(
- page_link_to('user_shifts', ['shift_id' => $shift['SID'], 'type_id' => $angeltype['id']]),
- $angeltype['name'],
- 'btn-xs'
- );
- }
+ $html .= '<li class="list-group-item">';
+ $html .= button(
+ page_link_to('user_shifts', ['shift_id' => $shift['SID']]),
+ glyph('plus') . _('Add more angels'),
+ 'btn-xs'
+ );
$html .= '</li>';
}
if ($html != '') {