Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions classes/Commands/KirbyCommands/UpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ public function __construct(CLI $cli)
parent::__construct($cli);

$confirmed = confirm(
label: 'Are you sure you want to enable maintenance mode?',
label: 'Disable maintenance mode?',
default: false,
hint: 'This will prevent non-logged in users from accessing the site.',
hint: 'This will bring the site up again.',
);

if(!$confirmed)
{
error('❌ Maintenance mode not disabled.');
error('❌ Maintenance still enabled.');
die();
}

Expand Down