diff options
| author | 2021-02-06 12:09:05 -0500 | |
|---|---|---|
| committer | 2021-02-06 18:09:05 +0100 | |
| commit | afc30cef3d8ca3728af35f2385d05e91e857ea0e (patch) | |
| tree | 0d26b36a961e7be90aad6502522451e71747a15d | |
| parent | a3f07d7d5eb711d047d7f59628eb72aea7743379 (diff) | |
Add missing variable (#3427)
When refactoring the install in #3368, a variable was unwillingly removed.
It's back in the code now.
| -rw-r--r-- | app/install.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/install.php b/app/install.php index 286e7cc69..76183e3cc 100644 --- a/app/install.php +++ b/app/install.php @@ -396,6 +396,7 @@ 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(); printStep1Template('php', $res['php'], [PHP_VERSION, FRESHRSS_MIN_PHP_VERSION]); printStep1Template('pdo', $res['pdo']); printStep1Template('curl', $res['curl'], [$version['version']]); |
