aboutsummaryrefslogtreecommitdiff
path: root/lib/lib_install.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-03-08 11:49:05 +0100
committerGravatar GitHub <noreply@github.com> 2025-03-08 11:49:05 +0100
commitd80171ebfdddad2b3b873400caf633d160e2fb12 (patch)
treed0cec495c90ae53f634fe6452bf806bd02292e2d /lib/lib_install.php
parentfdc564dd9e85a2f3fbf6087611fd6c7f42fc2ea8 (diff)
Back-compatibility cURL 7.51 (#7409)
* Back-compatibility cURL 7.51 fix https://github.com/FreshRSS/FreshRSS/issues/7381 And add cURL version to system info. Do not require a specific version of cURL for now, but maybe later. * Fix CI * make fix-all * Add TODOs * Add ssl_version * Update app/i18n/it/index.php Co-authored-by: UserRoot-Luca <55756898+UserRoot-Luca@users.noreply.github.com> --------- Co-authored-by: UserRoot-Luca <55756898+UserRoot-Luca@users.noreply.github.com>
Diffstat (limited to 'lib/lib_install.php')
-rw-r--r--lib/lib_install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_install.php b/lib/lib_install.php
index e78de565b..44bedd218 100644
--- a/lib/lib_install.php
+++ b/lib/lib_install.php
@@ -7,7 +7,7 @@ FreshRSS_UserConfiguration::register('default_user', join_path(FRESHRSS_PATH, 'c
/** @return array<string,string> */
function checkRequirements(string $dbType = ''): array {
$php = version_compare(PHP_VERSION, FRESHRSS_MIN_PHP_VERSION) >= 0;
- $curl = extension_loaded('curl');
+ $curl = extension_loaded('curl'); // TODO: We actually require cURL >= 7.52 for CURLPROXY_HTTPS
$pdo_mysql = extension_loaded('pdo_mysql');
$pdo_sqlite = extension_loaded('pdo_sqlite');
$pdo_pgsql = extension_loaded('pdo_pgsql');