Fix CLI install for SQLite (#2648)

One forgotten condition. Related to
https://github.com/FreshRSS/FreshRSS/pull/2646 and
https://github.com/FreshRSS/FreshRSS/pull/2635
This commit is contained in:
Alexandre Alapetite
2019-11-09 01:47:58 +01:00
committed by GitHub
parent 59f284d229
commit 6a643d180e

View File

@@ -89,7 +89,7 @@ if (function_exists('opcache_reset')) {
Minz_Configuration::register('system', DATA_PATH . '/config.php', FRESHRSS_PATH . '/config.default.php');
FreshRSS_Context::$system_conf = Minz_Configuration::get('system');
Minz_Session::_param('currentUser', $config['default_user']);
Minz_Session::_param('currentUser', '_'); //Default user
$ok = false;
try {