summaryrefslogtreecommitdiff
path: root/pages/api/data.php
diff options
context:
space:
mode:
Diffstat (limited to 'pages/api/data.php')
-rw-r--r--pages/api/data.php12
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