Help with forums addon
PermalinkMany of my users will not be very computer literate and may be very confused by it asking if they want to download every picture they want to look at. I only care about having images here, although I understand other types may be added - so having a way to set this as default for any image extension would be good.
Here is the current code for attachments:
// add new attachments if they're there foreach($attachments as $nb) { $data = array(); $data['fileLinkText'] = $nb->getFilename(); $data['fID'] = $nb->getFileID(); $b2 = BlockType::getByHandle('file'); $this->addBlock($b2, 'Attachments', $data); }