Here are my changes so as to be able to delete threads, I'm using the same msgs as for deleting notes, so don't get confused.
dbaccess.php3: goes in the include dir admin_forum.php3: changes here include the menu for deleting threads, posting and editing notes. delete_threads.php3: extra, called from admin_forum.php3
For editing notes, you need somethinglike the following in the list.php3 file for each template:
$bn_edit_header = "<UL>"; $bn_edit_odd_first_line = "<li><i>\$formated_date</i> <a href='edit.php3?bn=\$bn&key=\$note'><b>\$subject</a></b> (\$username)"; $bn_edit_even_first_line = $bn_edit_odd_first_line; $bn_edit_begin_level = "<UL>"; $bn_edit_odd_line = $bn_edit_odd_first_line; $bn_edit_even_line = $bn_edit_odd_first_line; $bn_edit_end_level = "</UL>"; $bn_edit_end_thread = ""; $bn_edit_footer = "</UL>";
|