From c61e888de484c4571113cb46b4e131ddd9975f2f Mon Sep 17 00:00:00 2001 From: msquare Date: Sat, 12 Nov 2016 12:56:10 +0100 Subject: change shift coloring --- includes/view/ShiftCalendarShiftRenderer.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'includes/view') diff --git a/includes/view/ShiftCalendarShiftRenderer.php b/includes/view/ShiftCalendarShiftRenderer.php index e86f7baa..ac29b40d 100644 --- a/includes/view/ShiftCalendarShiftRenderer.php +++ b/includes/view/ShiftCalendarShiftRenderer.php @@ -14,8 +14,6 @@ class ShiftCalendarShiftRenderer { * The shift to render */ public function render($shift) { - global $privileges; - $collides = $this->collides(); $info_text = ""; if ($shift['title'] != '') { @@ -23,9 +21,9 @@ class ShiftCalendarShiftRenderer { } list($is_free, $shifts_row) = $this->renderShiftNeededAngeltypes($shift, $collides); - if (isset($shift['own']) && $shift['own'] && ! in_array('user_shifts_admin', $privileges)) { + if (isset($shift['own']) && $shift['own']) { $class = 'primary'; - } elseif ($collides && ! in_array('user_shifts_admin', $privileges)) { + } elseif ($collides) { $class = 'default'; } elseif ($is_free) { $class = 'danger'; -- cgit v1.2.3-54-g00ecf