summaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-07-07 18:57:17 +0200
committerRaindropsSys <contact@minteck.org>2023-07-07 18:57:17 +0200
commitd41e523af3b8ff5dce6158fb42a46a8980de7bc6 (patch)
tree594847e0db325c5883c361710d3abae746a4f803 /auth
parent1a8b9c5349780ed02e5af24c0e68daa12d9e08c3 (diff)
downloadsynccenter-mane.tar.gz
synccenter-mane.tar.bz2
synccenter-mane.zip
Updated 2 files (automated)HEADmane
Diffstat (limited to 'auth')
-rw-r--r--auth/callback/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/callback/index.php b/auth/callback/index.php
index 228d35d..b5daf0c 100644
--- a/auth/callback/index.php
+++ b/auth/callback/index.php
@@ -46,7 +46,7 @@ if (isset($result["access_token"])) {
$token = "sc" . str_replace("/", ".", base64_encode(random_bytes(96)));
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/tokens/" . $token, $result);
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/tokens/" . $token, json_encode($result));
header("Set-Cookie: SC_SESSION_TOKEN=" . $token . "; SameSite=None; Path=/; Secure; HttpOnly; Expires=" . date("r", time() + (86400 * 730)));