summaryrefslogtreecommitdiff
path: root/classes/config.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-23 17:01:25 +0300
committerAndrew Dolgov <[email protected]>2021-02-23 17:01:25 +0300
commit85095f8a532d41487100778f4e087e3c5a48d653 (patch)
treea9961352a0005cd4b00f151c7183368b442ca3f9 /classes/config.php
parentab4dafa4be5909c66d7f60451a8a0fdffa5387f9 (diff)
rename TTRSS_SESSION_NAME to SESSION_NAME
Diffstat (limited to 'classes/config.php')
-rw-r--r--classes/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/config.php b/classes/config.php
index 9f8b4a4c6..effbb78ad 100644
--- a/classes/config.php
+++ b/classes/config.php
@@ -52,7 +52,7 @@ class Config {
const LOG_SENT_MAIL = "LOG_SENT_MAIL";
const HTTP_PROXY = "HTTP_PROXY";
const FORBID_PASSWORD_CHANGES = "FORBID_PASSWORD_CHANGES";
- const TTRSS_SESSION_NAME = "TTRSS_SESSION_NAME";
+ const SESSION_NAME = "SESSION_NAME";
private const _DEFAULTS = [
Config::DB_TYPE => [ "pgsql", Config::T_STRING ],
@@ -101,7 +101,7 @@ class Config {
Config::LOG_SENT_MAIL => [ "", Config::T_BOOL ],
Config::HTTP_PROXY => [ "", Config::T_STRING ],
Config::FORBID_PASSWORD_CHANGES => [ "", Config::T_BOOL ],
- Config::TTRSS_SESSION_NAME => [ "ttrss_sid", Config::T_STRING ],
+ Config::SESSION_NAME => [ "ttrss_sid", Config::T_STRING ],
];
private static $instance;