Merge branch 'master' into 'master'

Update config.php: $ttrss_version in private function _get_version() replaced by $this->version

See merge request tt-rss/tt-rss!2
This commit is contained in:
fox 2023-04-06 19:58:03 +00:00
commit ae27d51197
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ class Config {
$this->version["status"] = -1;
if (PHP_OS === "Darwin") {
$ttrss_version["version"] = "UNKNOWN (Unsupported, Darwin)";
$this->version["version"] = "UNKNOWN (Unsupported, Darwin)";
} else if (file_exists("$root_dir/version_static.txt")) {
$this->version["version"] = trim(file_get_contents("$root_dir/version_static.txt")) . " (Unsupported)";
} else if (ini_get("open_basedir")) {