They would see:This topic/post was deleted by webmaster on Sat Sep 22, 2007 10:23pm.
Is there any way to do this?This topic/post was deleted on Sat Sep 22, 2007 10:23pm.
Code: Select all
//$permission = $permission || $auth->acl_get('f_read', $forum_id); // Allow any user to see the deleted posts so long as they can view the forum
Code: Select all
Parse error: syntax error, unexpected T_DOUBLE_ARROW in /home1/bertiest/public_html/phpBB/includes/acp/acp_users.php on line 476
Code: Select all
if (confirm_box(true))
{
//-- mod: Prime Trash Bin (Posts) -------------------------------------------//
// Intercept the post deletion (deleting all posts by a specific user).
include($phpbb_root_path . 'includes/prime_trash_bin_2.' . $phpEx);
stifle_users_posts($user_id, $user_row['username'], adm_back_link($this->u_action . '&u=' . $user_id));
//-- end: Prime Trash Bin (Posts) -------------------------------------------//
// Delete posts, attachments, etc.
delete_posts('poster_id', $user_id);
Code: Select all
=>
Code: Select all
//-- mod: Prime Trash Bin (Posts) -------------------------------------------//
// Pass on our variables through the confirmation page.
'delete_reason' => request_var('delete_reason', '', true),
'delete_forever' => request_var('delete_forever', false),
//-- end: Prime Trash Bin (Posts) -------------------------------------------//
Code: Select all
confirm_box(false, $user->lang['CONFIRM_OPERATION'], build_hidden_fields(array(
Hello,primehalo wrote:Open includes/prime_trash_bin.php and change SHOW_PLACEHOLDER to false.