diff options
| author | 2025-03-22 23:17:52 +0100 | |
|---|---|---|
| committer | 2025-03-22 23:17:52 +0100 | |
| commit | 64bbb42553c925ebf7177945d048c18675188584 (patch) | |
| tree | e9f11e54b44512628304bcd83a1f6f418529099f /cli/create-user.php | |
| parent | 72ad6e528cc7d65d4d4f401a705cd9e2e6183c1a (diff) | |
Fix CLI flag parsing (#7430)
* Fix CLI flag parsing
fix https://github.com/FreshRSS/FreshRSS/issues/7428
* Fix other places
* Forgotten debugging
Diffstat (limited to 'cli/create-user.php')
| -rwxr-xr-x | cli/create-user.php | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
