From 27b82236115df5db560e7015248574575441a551 Mon Sep 17 00:00:00 2001 From: "Moritz Kaspar Rudert (mortzu)" Date: Mon, 8 Sep 2014 08:38:08 +0200 Subject: removed bootstrap.php --- includes/pages/user_ical.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/pages') diff --git a/includes/pages/user_ical.php b/includes/pages/user_ical.php index 384979d7..911f48aa 100644 --- a/includes/pages/user_ical.php +++ b/includes/pages/user_ical.php @@ -19,7 +19,7 @@ function user_ical() { die("No privilege for ical."); if (isset ($_REQUEST['export']) && $_REQUEST['export'] == 'user_shifts') { - require_once ('includes/pages/user_shifts.php'); + require_once realpath(__DIR__ . '/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`"); -- cgit v1.2.3-54-g00ecf