|
|
@@ -26,6 +26,14 @@
|
|
|
<dd><?= htmlspecialchars(FRESHRSS_VERSION, ENT_NOQUOTES, 'UTF-8') ?></dd>
|
|
|
<dt><?= _t('index.about.bug_reports.environment_information.version_php') ?></dt>
|
|
|
<dd><?= htmlspecialchars(PHP_VERSION, ENT_NOQUOTES, 'UTF-8') ?></dd>
|
|
|
+ <dt><?= _t('index.about.bug_reports.environment_information.version_curl') ?></dt>
|
|
|
+ <?php
|
|
|
+ $curlVersion = curl_version() ?: [];
|
|
|
+ $curlVersionVersion = is_string($curlVersion['version'] ?? null) ? $curlVersion['version'] : '';
|
|
|
+ $sslversion = is_string($curlVersion['ssl_version'] ?? null) ? $curlVersion['ssl_version'] : '';
|
|
|
+ ?>
|
|
|
+ <dd><?= htmlspecialchars($curlVersionVersion, ENT_NOQUOTES, 'UTF-8') ?></dd>
|
|
|
+ <dd><?= htmlspecialchars($sslversion, ENT_NOQUOTES, 'UTF-8') ?></dd>
|
|
|
<dt><?= _t('index.about.bug_reports.environment_information.database') ?></dt>
|
|
|
<dd><?= htmlspecialchars(FreshRSS_Context::systemConf()->db['type'], ENT_NOQUOTES, 'UTF-8') ?></dd>
|
|
|
<?php $databaseDAO = FreshRSS_Factory::createDatabaseDAO(); ?>
|