From 58fb9ea5b32040fdb64ece910f0ede1aafb97329 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 28 May 2018 22:14:10 +0200 Subject: Fix CLI no_default_feeds (#1900) * Fix CLI no_default_feeds The option was not working anymore * Changelog 1900 https://github.com/FreshRSS/FreshRSS/pull/1900 --- cli/create-user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/create-user.php b/cli/create-user.php index 5bc6c1e6c..29675fa53 100755 --- a/cli/create-user.php +++ b/cli/create-user.php @@ -20,7 +20,7 @@ $ok = FreshRSS_user_Controller::createUser($username, empty($options['password']) ? '' : $options['password'], empty($options['api_password']) ? '' : $options['api_password'], $values, - !isset($options['no-default-feeds'])); + !isset($options['no_default_feeds'])); if (!$ok) { fail('FreshRSS could not create user!'); -- cgit v1.2.3