fix missing variables

This commit is contained in:
msquare 2016-10-03 17:55:49 +02:00
parent 6c8a113383
commit 09c931dcf5
1 changed files with 9 additions and 0 deletions

View File

@ -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) {