First of all, thanks for the MOD, great addition!
I have found what seems to be an error on this MOD.
This happens when deleting the first post of a topic, in DEBUG mode you get an "index does not exist" error on "post_approved" in the following line of the includes/functions_posting.php file:
- Code: Select all
if ($row['post_approved'] && $row['post_postcount'])
I think that the error may be solved by changing the above by:
- Code: Select all
if ($data['post_approved'] && $data['post_postcount'])
Please, could you confirm this is the right way to correct this issue? Thanks and regards,
-javiexin


