Add extra confirmation before extension removal

This commit is contained in:
Jose
2020-05-11 19:20:33 -04:00
parent 06accafed4
commit 69d669ce67
3 changed files with 44 additions and 38 deletions
+1
View File
@@ -3,6 +3,7 @@
====================== ======================
Version Description Version Description
1.0.56......Add extra confirmation before extension removal.
1.0.55......Add backup path config check. 1.0.55......Add backup path config check.
1.0.54......Don't skip ZFS activation if "Available but not enabled" status displayed. 1.0.54......Don't skip ZFS activation if "Available but not enabled" status displayed.
1.0.53......Add initial ZFS activation guided support. 1.0.53......Add initial ZFS activation guided support.
+5
View File
@@ -94,6 +94,7 @@ if ($_POST) {
// Remove only extension related files during cleanup. // Remove only extension related files during cleanup.
if (isset($_POST['uninstall']) && $_POST['uninstall']) { if (isset($_POST['uninstall']) && $_POST['uninstall']) {
if(isset($_POST['delete_confirm']) && $_POST['delete_confirm']):
bindtextdomain("xigmanas", $textdomain); bindtextdomain("xigmanas", $textdomain);
if (is_link($textdomain_bastille)) mwexec("rm -f {$textdomain_bastille}", true); if (is_link($textdomain_bastille)) mwexec("rm -f {$textdomain_bastille}", true);
if (is_dir($confdir)) mwexec("rm -Rf {$confdir}", true); if (is_dir($confdir)) mwexec("rm -Rf {$confdir}", true);
@@ -136,6 +137,9 @@ if ($_POST) {
} }
} }
header("Location:index.php"); header("Location:index.php");
else:
$input_errors[] = gtext('Confirmation is required for extension removal.');
endif;
} }
if (isset($_POST['save']) && $_POST['save']) { if (isset($_POST['save']) && $_POST['save']) {
@@ -347,6 +351,7 @@ $(document).ready(function(){
<table width="100%" border="0" cellpadding="6" cellspacing="0"> <table width="100%" border="0" cellpadding="6" cellspacing="0">
<?php html_separator();?> <?php html_separator();?>
<?php html_titleline(gtext("Uninstall"));?> <?php html_titleline(gtext("Uninstall"));?>
<?php html_checkbox2('delete_confirm',gtext('Uninstall confirm'),'' ? true : false,gtext('Check to confirm extension uninstall. Note: Jail related content will be preserved by default.'),'',false);?>
<?php html_separator();?> <?php html_separator();?>
</table> </table>
<div id="submit1"> <div id="submit1">
+1 -1
View File
@@ -1 +1 @@
1.0.55 1.0.56