From 9c0c07a380f5421efd3faa80cee508022cde8128 Mon Sep 17 00:00:00 2001 From: Jon Ziebell Date: Mon, 21 Oct 2019 20:57:54 -0400 Subject: [PATCH] Removed CORS header It was added when the plan was to have the app POST to api.beestat.io. --- api/index.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/index.php b/api/index.php index 2c499d0..8ab68d6 100644 --- a/api/index.php +++ b/api/index.php @@ -8,9 +8,6 @@ * @author Jon Ziebell */ -// Allow access to the API from any domain. -header('Access-Control-Allow-Origin: *'); - // Compress output. ob_start('ob_gzhandler');