From 64bbb42553c925ebf7177945d048c18675188584 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 22 Mar 2025 23:17:52 +0100 Subject: Fix CLI flag parsing (#7430) * Fix CLI flag parsing fix https://github.com/FreshRSS/FreshRSS/issues/7428 * Fix other places * Forgotten debugging --- cli/create-user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/create-user.php') diff --git a/cli/create-user.php b/cli/create-user.php index 067ea2eff..cbcc89ba4 100755 --- a/cli/create-user.php +++ b/cli/create-user.php @@ -82,7 +82,7 @@ $ok = FreshRSS_user_Controller::createUser( $cliOptions->email ?? null, $cliOptions->password ?? '', $values, - !isset($cliOptions->noDefaultFeeds) + !$cliOptions->noDefaultFeeds ); if (!$ok) { -- cgit v1.2.3