From 9c3b8634a7b1932bdcb56f5d33a4165d5a289ea8 Mon Sep 17 00:00:00 2001 From: JRGTH Date: Mon, 8 Sep 2025 00:28:16 -0400 Subject: [PATCH] Fix typo --- gui/bastille_manager_util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/bastille_manager_util.php b/gui/bastille_manager_util.php index 139d46d..77cf1fa 100644 --- a/gui/bastille_manager_util.php +++ b/gui/bastille_manager_util.php @@ -598,7 +598,7 @@ $document->render(); html_checkbox2('createdir',gettext('Create Target Directory'),!empty($pconfig['createdir']) ? true : true,gettext('Create target directory if missing (recommended).'),'',true); if ($is_thinjail): html_checkbox2('update_base',gettext('Base update confirm'),!empty($pconfig['update_base']) ? true : false,gettext('This is a thin container, therefore the base release will be updated, this affects child containers.'),'',true); - html_checkbox2('update_base_force',gettext('Container update force confirm:'),!empty($pconfig['update_base']) ? true : false,gettext('This will perform a forced base update, this affects child containers.'),'',true); + html_checkbox2('update_base_force',gettext('Base update force confirm:'),!empty($pconfig['update_base']) ? true : false,gettext('This will perform a forced base update, this affects child containers.'),'',true); else: html_checkbox2('update_jail',gettext('Container update confirm:'),!empty($pconfig['update_jail']) ? true : false,gettext('This is a thick container, therefore the update will be performed within its root, current containers are not affected.'),'',true); html_checkbox2('update_jail_force',gettext('Container update force confirm:'),!empty($pconfig['update_jail']) ? true : false,gettext('This will perform a forced jail update, current containers are not affected.'),'',true);