PDA

View Full Version : Prevent a PHP error when deleting all attachments



Mike Sullivan
Mon 16th Jun '03, 5:24pm
Simple fix, although make sure you get the right line!

includes/functions.php. Find:


if ($vboptions['attachfile']) Locally, it's on line 2090. Just below this: function delete_attachment_files(&$ids)

Replace it with:


if ($vboptions['attachfile'] AND is_array($ids))

Chris M
Mon 16th Jun '03, 6:35pm
Simple fix, although make sure you get the right line!

includes/functions.php. Find:


if ($vboptions['attachfile']) Locally, it's on line 2090. Just below this: function delete_attachment_files(&$ids)

Replace it with:


if ($vboptions['attachfile'] AND is_array($ids))
Thanks Ed:)

Satan