Quote:
Originally Posted by CrazyLady
Thank you very much. It just didn't seem good to have a bunch of empty threads... and for myself, I don't want to be going into the forum searching for attachments AND their threads just to delete them one by one. As a side question, if I prune a forum and there are threads with attachments, I assume the attachments are deleted as well?
Thanks for looking into this for me. I'll watch for your reply.
thank you
CL
|
When pruning your are removing the threads/posts from the forum forever. If you want you can retain attachments (altho they will have no posts, but if directly linked they will still work) you can make this change to the code:
open /forumroot/admincp/thread.php
Find:
PHP Code:
delete_thread($thread['threadid'], 0);
Replace with:
PHP Code:
$delinfo = array('keepattachments' => 1);
delete_thread($thread['threadid'], 0, 1, $delinfo);