aboutsummaryrefslogtreecommitdiff
path: root/cli/create-user.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-03-22 23:17:52 +0100
committerGravatar GitHub <noreply@github.com> 2025-03-22 23:17:52 +0100
commit64bbb42553c925ebf7177945d048c18675188584 (patch)
treee9f11e54b44512628304bcd83a1f6f418529099f /cli/create-user.php
parent72ad6e528cc7d65d4d4f401a705cd9e2e6183c1a (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-xcli/create-user.php2
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) {