summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorJan Pieter Kunst <[email protected]>2023-04-06 18:36:36 +0000
committerJan Pieter Kunst <[email protected]>2023-04-06 18:36:36 +0000
commita60c833ee4ad394c681b87b083c91187c3c25d38 (patch)
tree4bf01dad2fa711e6d9a6f0e8b71450dba67e9f09 /classes
parent0fcc2d1d662fcbc79ac341f075ae308f69665719 (diff)
Update config.php: $ttrss_version in private function _get_version() replaced by $this->version
Diffstat (limited to 'classes')
-rw-r--r--classes/config.php2
1 files changed, 1 insertions, 1 deletions
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")) {