diff options
author | msquare <msquare@notrademark.de> | 2016-11-25 14:27:47 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2016-11-25 14:27:47 +0100 |
commit | 34248bb20cb3102fbcff76fcd7e059c12d87a6c3 (patch) | |
tree | 147a3402c1fc11802a67d4d12a1203b034089729 /includes/model/Shifts_model.php | |
parent | 476d1daeb76306faf3ecd70f2afc8e29e98b9553 (diff) |
show freeload comments to supporters (user shift admin)
Diffstat (limited to 'includes/model/Shifts_model.php')
-rw-r--r-- | includes/model/Shifts_model.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/model/Shifts_model.php b/includes/model/Shifts_model.php index 67580eee..b1d4ca5e 100644 --- a/includes/model/Shifts_model.php +++ b/includes/model/Shifts_model.php @@ -261,10 +261,11 @@ function Shift_create($shift) { /** * Return users shifts. */ -function Shifts_by_user($user) { +function Shifts_by_user($user, $include_freeload_comments = false) { $result = sql_select(" SELECT `ShiftTypes`.`id` as `shifttype_id`, `ShiftTypes`.`name`, `ShiftEntry`.`id`, `ShiftEntry`.`SID`, `ShiftEntry`.`TID`, `ShiftEntry`.`UID`, `ShiftEntry`.`freeloaded`, `ShiftEntry`.`Comment`, + " . ($include_freeload_comments ? "`ShiftEntry`.`freeload_comment`, " : "") . " `Shifts`.*, `Room`.* FROM `ShiftEntry` JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`) |