Quote:
Originally Posted by KirbyDE
@Erwin
Hmm ... this hack doesn't make sense at all.
One could just directly enter the URL.
|
The assumption is that unless the mod knows the direct url, they won't be doing that.
But you can always open thread.php in the modcp directory, and remove:
PHP Code:
// ###################### Start Prune #######################
if ($_REQUEST['do'] == 'prune')
{
if (!can_moderate(0, 'canmassprune'))
{
print_stop_message('no_permission');
}
print_form_header('', '');
print_table_header($vbphrase['prune_threads_manager']);
print_description_row($vbphrase['pruning_many_threads_is_a_server_intensive_process']);
print_table_footer();
print_form_header('thread', 'dothreads');
construct_hidden_code('type', 'prune');
print_move_prune_rows('canmassprune');
print_submit_row($vbphrase['prune_threads']);
}
The rest of the mass prune code is intermingle with the mass move code, and would be messy to remove, which was why I didn't post about that.