Skip to content

Commit

Permalink
Fix CLI install for SQLite (FreshRSS#2648)
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 9, 2019
1 parent 95d6d9d commit 1093569
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 1093569

Please sign in to comment.