1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 14:35:55 +00:00

rename TTRSS_SESSION_NAME to SESSION_NAME

This commit is contained in:
Andrew Dolgov
2021-02-23 17:01:25 +03:00
parent ab4dafa4be
commit 85095f8a53
2 changed files with 3 additions and 3 deletions

View File

@@ -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;