diff options
author | lolcat <will@lolcat.ca> | 2023-11-07 08:04:56 -0500 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2023-11-07 08:04:56 -0500 |
commit | 785452873f0ee0a27fc157b482b7551560f0282d (patch) | |
tree | 4c70e240031ed3868425ca683c83ebfd378a9159 /api/v1/news.php | |
parent | 64b090ee058953aed2246967332c7f0b6623cd8f (diff) |
fix typo
Diffstat (limited to 'api/v1/news.php')
-rw-r--r-- | api/v1/news.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/api/v1/news.php b/api/v1/news.php index bd8678f..ddfd72a 100644 --- a/api/v1/news.php +++ b/api/v1/news.php @@ -1,8 +1,14 @@ <?php +chdir("../../"); header("Content-Type: application/json"); -chdir("../../"); +include "data/config.php"; +if(config::API_ENABLED === false){ + + echo json_encode(["status" => "The server administrator disabled the API!"]); + return; +} include "lib/frontend.php"; $frontend = new frontend(); |