From 8a71719c9c73d8c93db7d10a46bb4b3855db931c Mon Sep 17 00:00:00 2001 From: "E. S." Date: Sun, 28 Jul 2024 22:35:50 +0300 Subject: [PATCH] fix --- htdocs/sass.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/sass.php b/htdocs/sass.php index ec1e185..05a334d 100644 --- a/htdocs/sass.php +++ b/htdocs/sass.php @@ -2,8 +2,8 @@ require __DIR__.'/../init.php'; -$name = $_REQUEST['name'] ?? ''; -$theme = $_REQUEST['theme'] ?? ''; +$name = $_GET['name'] ?? ''; +$theme = $_GET['theme'] ?? ''; if ($theme != 'light' && $theme != 'dark') { http_response_code(403);