-
Bug
-
Resolution: Fixed
-
Blocker
-
3.0.5
-
None
-
PHP Environment: 5.2.11
Database: MySQL 5.1.37
When deleting empty forum (without topics) in ACP, then all orphan attaches and attaches in private messages will be DELETED.
Actually executes query: DELETE FROM attachments WHERE topic_id = 0
It should be cheked in function delete_attachments
if (empty($ids))
{
return false;
}