It should. That way it is very similar to the normal preview way of doing it. Here is the fix.
find this:
Code:
'newpost_attachment'
);
replace it with:
Code:
'newpost_attachment',
'newpost_attachmentbit'
);
find this:
Code:
eval('$attachmentoption = "' . fetch_template('newpost_attachment') . '";');
replace it with:
Code:
$currentattaches = $DB_site->query("
SELECT filename, filesize, attachmentid
FROM " . TABLE_PREFIX . "attachment
WHERE posthash = '$posthash'
AND userid = $bbuserinfo[userid]
");
$attachcount = 0;
while ($attach = $DB_site->fetch_array($currentattaches))
{
$attachcount++;
$attach['extension'] = strtolower(file_extension($attach['filename']));
$attach['filename'] = htmlspecialchars_uni($attach['filename']);
$attach['filesize'] = vb_number_format($attach['filesize'], 1, true);
$show['attachmentlist'] = true;
eval('$attachments .= "' . fetch_template('newpost_attachmentbit') . '";');
}
eval('$attachmentoption = "' . fetch_template('newpost_attachment') . '";');