diff options
| author | 2021-03-20 18:25:55 +0100 | |
|---|---|---|
| committer | 2021-03-20 18:25:55 +0100 | |
| commit | a62d6288b17be77a686bb5288ab49931c51aaeef (patch) | |
| tree | 2a32bcafb21c61233923bd61d7d25504103c37b5 /cli/do-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 'cli/do-install.php')
| -rwxr-xr-x | cli/do-install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/do-install.php b/cli/do-install.php index 258b5b688..4d76b9acb 100755 --- a/cli/do-install.php +++ b/cli/do-install.php @@ -86,7 +86,7 @@ if (function_exists('opcache_reset')) { opcache_reset(); } -FreshRSS_Context::initSystem(); +FreshRSS_Context::initSystem(true); Minz_Session::_param('currentUser', '_'); //Default user |
