summaryrefslogtreecommitdiff
path: root/includes/controller/shift_entries_controller.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-09-16 17:14:45 +0200
committermsquare <msquare@notrademark.de>2017-09-16 17:14:45 +0200
commitdb8b6b25202efb2011d15afc28d748177b2bc819 (patch)
treeac42c6621a467631f6baab1efaea413dea418fd3 /includes/controller/shift_entries_controller.php
parent359160613027a480620e22deef19ff883eaaeb21 (diff)
change shift renderer global add user link
Diffstat (limited to 'includes/controller/shift_entries_controller.php')
-rw-r--r--includes/controller/shift_entries_controller.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/includes/controller/shift_entries_controller.php b/includes/controller/shift_entries_controller.php
index 150db2e9..15aeaab1 100644
--- a/includes/controller/shift_entries_controller.php
+++ b/includes/controller/shift_entries_controller.php
@@ -32,14 +32,19 @@ function shift_entry_add_controller()
}
$shift['Name'] = $room_array[$shift['RID']];
- $type_id = 0;
+ $type_id = null;
if ($request->has('type_id') && preg_match('/^\d+$/', $request->input('type_id'))) {
$type_id = $request->input('type_id');
- } else {
- redirect(page_link_to('user_shifts'));
}
if (in_array('user_shifts_admin', $privileges) || in_array('shiftentry_edit_angeltype_supporter', $privileges)) {
+ if($type_id == null) {
+ // If no angeltype id is given, then select first existing angeltype.
+ $needed_angeltypes = NeededAngelTypes_by_shift($shift_id);
+ if(count($needed_angeltypes) > 0) {
+ $type_id = $needed_angeltypes[0]['id'];
+ }
+ }
$type = AngelType($type_id);
} else {
// TODO: Move queries to model