Tue 20th May '08 9:30am
|
 |
vBG.com Team
|
|
|
WBB3: Attachments are missing
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:
Code:
if(!is_file($dir . '/' . $data['attachmentName']))
to:
Code:
if(!is_file($dir . '/attachment-' . $data['attachmentID']))
And:
Code:
$file = $this->vb_file_get_contents($dir . '/' . $data['attachmentName']);
to:
Code:
$file = $this->vb_file_get_contents($dir . '/attachment-' . $data['attachmentID']);
(Sorry I can't tell you the used WBB3 version any more).
|