aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/install.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/install.php b/app/install.php
index b3e96a773..1eb952286 100644
--- a/app/install.php
+++ b/app/install.php
@@ -402,7 +402,11 @@ function printStep1() {
<noscript><p class="alert alert-warn"><span class="alert-head"><?= _t('gen.short.attention') ?></span> <?= _t('install.javascript_is_better') ?></p></noscript>
<?php
- $version = curl_version();
+ if (function_exists('curl_version')) {
+ $version = curl_version();
+ } else {
+ $version['version'] = '';
+ }
printStep1Template('php', $res['php'], [PHP_VERSION, FRESHRSS_MIN_PHP_VERSION]);
printStep1Template('pdo', $res['pdo']);
printStep1Template('curl', $res['curl'], [$version['version']]);