aboutsummaryrefslogtreecommitdiff
path: root/lib/lib_install.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-02-05 22:21:31 +0100
committerGravatar GitHub <noreply@github.com> 2021-02-05 22:21:31 +0100
commitd42b4c299c7400d728a7a6eeeabe6f0f4ac3f169 (patch)
tree2eb872bac1bb82f1eb8bb3070ce00169cba31e81 /lib/lib_install.php
parent934f032c19ba0ae16a4d19702c8e95c377f64c14 (diff)
Add requirements check in CLI (#3410)
* Add requirements check in CLI #fix https://github.com/FreshRSS/FreshRSS/issues/1853 * More checks #fix https://github.com/FreshRSS/FreshRSS/issues/1853
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 19b3274e3..f8b2ba969 100644
--- a/lib/lib_install.php
+++ b/lib/lib_install.php
@@ -68,7 +68,7 @@ function checkRequirements($dbType = '') {
'users' => $users ? 'ok' : 'ko',
'favicons' => $favicons ? 'ok' : 'ko',
'http_referer' => $http_referer ? 'ok' : 'ko',
- 'message' => $message ?: 'ok',
+ 'message' => $message ?: '',
'all' => $php && $curl && $pdo && $pcre && $ctype && $dom && $xml &&
$data && $cache && $tmp && $users && $favicons && $http_referer && $message == '' ? 'ok' : 'ko'
);