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
pull/2661/head
Alexandre Alapetite 5 years ago committed by GitHub
parent 59f284d229
commit 6a643d180e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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 {

Loading…
Cancel
Save