rename get_settings.php to load_global_settings.php and update all requires

This commit is contained in:
johnnyq
2025-08-06 17:48:23 -04:00
parent 44fdb6c24f
commit 9caa42975d
14 changed files with 18 additions and 15 deletions

View File

@@ -3,9 +3,12 @@
if (!isset($_SESSION)) {
// HTTP Only cookies
ini_set("session.cookie_httponly", true);
if ($config_https_only) {
// Tell client to only send cookie(s) over HTTPS
ini_set("session.cookie_secure", true);
}
session_start();
}