From 09c931dcf585da440879c52bb32b5eb9ef0fb9b4 Mon Sep 17 00:00:00 2001 From: msquare Date: Mon, 3 Oct 2016 17:55:49 +0200 Subject: fix missing variables --- includes/controller/shift_entries_controller.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'includes') diff --git a/includes/controller/shift_entries_controller.php b/includes/controller/shift_entries_controller.php index a6121e75..d704c299 100644 --- a/includes/controller/shift_entries_controller.php +++ b/includes/controller/shift_entries_controller.php @@ -4,12 +4,21 @@ * Sign up for a shift. */ function shift_entry_add_controller() { + global $privileges, $user; + if (isset($_REQUEST['shift_id']) && preg_match("/^[0-9]*$/", $_REQUEST['shift_id'])) { $shift_id = $_REQUEST['shift_id']; } else { redirect(page_link_to('user_shifts')); } + // Locations laden + $rooms = sql_select("SELECT * FROM `Room` WHERE `show`='Y' ORDER BY `Name`"); + $room_array = []; + foreach ($rooms as $room) { + $room_array[$room['RID']] = $room['Name']; + } + $shift = Shift($shift_id); $shift['Name'] = $room_array[$shift['RID']]; if ($shift === false) { -- cgit v1.2.3-54-g00ecf