diff options
| author | 2019-11-09 01:47:58 +0100 | |
|---|---|---|
| committer | 2019-11-09 01:47:58 +0100 | |
| commit | 6a643d180ec7e05deb4d86a4a8d128dda0360345 (patch) | |
| tree | 4c3e4889a2e21d91e0fa2f7703d5e47fa9ae6551 /cli/do-install.php | |
| parent | 59f284d229608f0d80784ecfd19742c06db44a8a (diff) | |
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
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 fa6bac8c8..16ac833ea 100755 --- a/cli/do-install.php +++ b/cli/do-install.php @@ -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 { |
