diff --git a/app/Models/DatabaseDAO.php b/app/Models/DatabaseDAO.php index 5a25b74a0..fe922cb82 100644 --- a/app/Models/DatabaseDAO.php +++ b/app/Models/DatabaseDAO.php @@ -212,6 +212,11 @@ class FreshRSS_DatabaseDAO extends Minz_ModelPdo { return $version; } + public function pdoClientVersion(): string { + $version = $this->pdo->getAttribute(PDO::ATTR_CLIENT_VERSION); + return is_string($version) ? $version : ''; + } + final public function isMariaDB(): bool { // MariaDB includes its name in version, but not MySQL return str_contains($this->version(), 'MariaDB'); diff --git a/app/views/index/about.phtml b/app/views/index/about.phtml index 9e56a1afe..096cfecd9 100644 --- a/app/views/index/about.phtml +++ b/app/views/index/about.phtml @@ -38,6 +38,9 @@