diff options
Diffstat (limited to 'includes/controller')
-rw-r--r-- | includes/controller/shifts_controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/controller/shifts_controller.php b/includes/controller/shifts_controller.php index 6e5b71fd..868e903b 100644 --- a/includes/controller/shifts_controller.php +++ b/includes/controller/shifts_controller.php @@ -45,7 +45,7 @@ function shifts_json_export_controller() { die("No privilege for shifts_json_export."); if (isset($_REQUEST['export']) && $_REQUEST['export'] == 'user_shifts') { - require_once ('includes/pages/user_shifts.php'); + require_once realpath(__DIR__ . '/../pages/user_shifts.php'); view_user_shifts(); } else { $ical_shifts = sql_select("SELECT `Shifts`.*, `Room`.`Name` as `room_name` FROM `ShiftEntry` INNER JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`) INNER JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `UID`=" . sql_escape($user['UID']) . " ORDER BY `start`"); |