Mystics
Tue 20th May '08, 9:30am
I don't know if this was changed in a newer version of WBB3 or if there is a setting in WBB3 to change the storage type, but I had to change this in wbb3/009.php:
if(!is_file($dir . '/' . $data['attachmentName']))
to:
if(!is_file($dir . '/attachment-' . $data['attachmentID']))
And:
$file = $this->vb_file_get_contents($dir . '/' . $data['attachmentName']);
to:
$file = $this->vb_file_get_contents($dir . '/attachment-' . $data['attachmentID']);
(Sorry I can't tell you the used WBB3 version any more).