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

enforce some stricter type checking for loggers

This commit is contained in:
Andrew Dolgov
2021-02-25 17:10:03 +03:00
parent dcf0135285
commit 34c74400a4
7 changed files with 19 additions and 18 deletions

View File

@@ -614,7 +614,7 @@ class Handler_Public extends Handler {
function dbupdate() {
startup_gettext();
if (!Config::get(Config::SINGLE_USER_MODE) && $_SESSION["access_level"] < 10) {
if (!Config::get(Config::SINGLE_USER_MODE) && ($_SESSION["access_level"] ?? 0) < 10) {
$_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script.");
$this->_render_login_form();
exit;