diff options
| author | 2021-03-20 18:25:55 +0100 | |
|---|---|---|
| committer | 2021-03-20 18:25:55 +0100 | |
| commit | a62d6288b17be77a686bb5288ab49931c51aaeef (patch) | |
| tree | 2a32bcafb21c61233923bd61d7d25504103c37b5 /app/install.php | |
| parent | 789a1664960da1b6287e3bb815d64e0d0fa8ef95 (diff) | |
Fix init in CLI install (#3544)
#fix https://github.com/FreshRSS/FreshRSS/issues/3528
config was not properly reloaded after being populated
Diffstat (limited to 'app/install.php')
| -rw-r--r-- | app/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/install.php b/app/install.php index 1eb952286..b7b309e1a 100644 --- a/app/install.php +++ b/app/install.php @@ -152,7 +152,7 @@ function saveStep2() { opcache_reset(); } - FreshRSS_Context::initSystem(); + FreshRSS_Context::initSystem(true); $ok = false; try { |
