diff options
Diffstat (limited to 'pages/api/data.php')
-rw-r--r-- | pages/api/data.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pages/api/data.php b/pages/api/data.php deleted file mode 100644 index eb07824..0000000 --- a/pages/api/data.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php - -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/session.inc"; global $isLoggedIn; -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/bitset.inc"; -if (!$isLoggedIn) header("Location: /-/login") and die(); - -if (!isset($_GET['f']) || !file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $_GET['f'])) { - die(); -} else { - header("Content-Type: " . mime_content_type($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $_GET['f'])); - die(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $_GET['f'])); -}
\ No newline at end of file |