diff --git a/CHANGELOG b/CHANGELOG index 76c17a8..a4d3ce7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ ====================== Version Description +1.1.13......Cosmetic changes, add note about space escaping in fstab. 1.1.12......Fix for PHP 8.1 compatibility. 1.1.11......Fix to replace deprecated PHP date function. 1.1.10......Add Debian 11(Bullseye) to the WebGUI. diff --git a/gui/bastille_manager_util.php b/gui/bastille_manager_util.php index 99ad974..a6a56d0 100644 --- a/gui/bastille_manager_util.php +++ b/gui/bastille_manager_util.php @@ -599,8 +599,8 @@ $document->render(); html_inputbox2('newname',gettext('Enter a name for the new container'),$pconfig['newname'],'',true,30); html_inputbox2('newipaddr',gettext('Enter a IP address for the new container'),$pconfig['newipaddr'],'',true,30); html_checkbox2('clonestop',gettext('Stop container'),!empty($pconfig['clonestop']) ? true : false,gettext('Stop the container if running before cloning, mandatory on UFS filesystem.'),'',false); - html_filechooser("source_path", gtext("Source Data Directory"), $pconfig['source_path'], gtext("Source data directory to be shared, full path here."), $source_path, false, 60); - html_filechooser("target_path", gtext("Target Data Directory"), $pconfig['target_path'], gtext("Target data directory to be mapped, full path to jail here."), $target_path, false, 60); + html_filechooser("source_path", gtext("Source Data Directory"), $pconfig['source_path'], gtext("Source data directory to be shared, full path here, if the path contain spaces just escape them with \"\\040\", e.g: \"/mnt/my\\040data/music\""), $source_path, false, 60); + html_filechooser("target_path", gtext("Target Data Directory"), $pconfig['target_path'], gtext("Target data directory to be mapped, full path to jail here, if the path contain spaces just escape them with \"\\040\", e.g: \"/mnt/extensions/bastille/jails/jail1/root/mnt/my\\040data/music\""), $target_path, false, 60); html_checkbox2("path_check", gettext("Source/Target path check"),!empty($pconfig['path_check']) ? true : false, gettext("If this option is selected no examination of the source/target directory paths will be performed."), "".gettext("Please use this option only if you know what you are doing here!")."", false); html_checkbox2('advanced',gettext('Advanced jail configuration Files'),!empty($pconfig['advanced']) ? true : false,gettext('I want to edit the jail files manually, Warning: It is recommended to stop the jail before config edit to prevent issues.'),'',true); html_checkbox2('readonly',gettext('Read-Only Mode'),!empty($pconfig['readonly']) ? true : false,gettext('Set target directory in Read-Only mode.'),'',true); diff --git a/version b/version index ccad953..9ea63db 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.1.12 +1.1.13