mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
[ticket/9657] Remove softdelete reason field when permanent delete is selected
PHPBB3-9657
This commit is contained in:
@@ -230,6 +230,14 @@ $('#quick-mod-select').change(function () {
|
||||
$('#quickmodform').submit();
|
||||
});
|
||||
|
||||
$('#delete_permanent').click(function () {
|
||||
if ($(this).attr('checked')) {
|
||||
$('#delete_reason').hide();
|
||||
} else {
|
||||
$('#delete_reason').show();
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Toggle the member search panel in memberlist.php.
|
||||
*
|
||||
|
Reference in New Issue
Block a user