From 5df5bdef5981976b1cf6b554f0448ffee04dadbc Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Tue, 12 Sep 2023 16:08:32 +0200 Subject: [PATCH] Update settings.php The "saveSettings" function is corrected by changing the relative url to an absolute url so that it works correctly with reverse proxies. --- front/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/settings.php b/front/settings.php index 59404713..996ea8a6 100755 --- a/front/settings.php +++ b/front/settings.php @@ -577,7 +577,7 @@ while ($row = $result -> fetchArray (SQLITE3_ASSOC)) { { $.ajax({ method: "POST", - url: "../php/server/util.php", + url: "php/server/util.php", data: { function: 'savesettings', settings: JSON.stringify(collectSettings()) },