Skip to content

Commit

Permalink
Fix CLI install for SQLite
Browse files Browse the repository at this point in the history
One forgotten condition. Related to
FreshRSS#2646 and
FreshRSS#2635
  • Loading branch information
Alkarex committed Nov 8, 2019
1 parent f1d1d46 commit a4b2cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/do-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
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 {
Expand Down

0 comments on commit a4b2cc3

Please sign in to comment.