aboutsummaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-05-17 22:51:44 +0200
committerGravatar GitHub <noreply@github.com> 2025-05-17 22:51:44 +0200
commit52848d414d63bbb57042741bd56d97a7fea06653 (patch)
treebc1cc6151dbc2f02ac349598aac7dab0e33cb7c7 /app/views
parente24d9f39fb299829abd4b8b28b6d3bc6d7e99522 (diff)
Add info about PDO::ATTR_CLIENT_VERSION (#7591)
Help with https://github.com/FreshRSS/FreshRSS/issues/7586
Diffstat (limited to 'app/views')
-rw-r--r--app/views/index/about.phtml3
1 files changed, 3 insertions, 0 deletions
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 @@
<dd><?= htmlspecialchars(FreshRSS_Context::systemConf()->db['type'], ENT_NOQUOTES, 'UTF-8') ?></dd>
<?php $databaseDAO = FreshRSS_Factory::createDatabaseDAO(); ?>
<dd><?= htmlspecialchars($databaseDAO->version(), ENT_NOQUOTES, 'UTF-8') ?></dd>
+ <?php if ($databaseDAO->pdoClientVersion() !== $databaseDAO->version()): ?>
+ <dd><?= htmlspecialchars($databaseDAO->pdoClientVersion(), ENT_NOQUOTES, 'UTF-8') ?></dd>
+ <?php endif; ?>
<dt><?= _t('index.about.bug_reports.environment_information.server_software') ?></dt>
<dd>
<?= is_string($_SERVER['SERVER_SOFTWARE'] ?? null) ? $_SERVER['SERVER_SOFTWARE'] : '' ?><br />