From a60c833ee4ad394c681b87b083c91187c3c25d38 Mon Sep 17 00:00:00 2001 From: Jan Pieter Kunst Date: Thu, 6 Apr 2023 18:36:36 +0000 Subject: [PATCH] Update config.php: $ttrss_version in private function _get_version() replaced by $this->version --- classes/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/config.php b/classes/config.php index a865266ca..dee6caa38 100644 --- a/classes/config.php +++ b/classes/config.php @@ -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")) {