@@ -4,5 +4,5 @@ |
||
| 4 | 4 | include_once '../../_config/core.php'; |
| 5 | 5 | |
| 6 | 6 | |
| 7 | -setcookie("token", false, time()-1000, "/", "localhost", 0, 1); |
|
| 7 | +setcookie("token", false, time() - 1000, "/", "localhost", 0, 1); |
|
| 8 | 8 | returnSuccess($jwt); |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | $http_origin = $_SERVER['HTTP_ORIGIN']; |
| 4 | -if ($http_origin == "http://localhost:8080" || $http_origin == "https://minska.eliareutlinger.ch"){ |
|
| 4 | +if ($http_origin == "http://localhost:8080" || $http_origin == "https://minska.eliareutlinger.ch") { |
|
| 5 | 5 | header("Access-Control-Allow-Origin: $http_origin"); |
| 6 | 6 | } |
| 7 | 7 | |