there is a way to implement that feature *without* hacking the files (/me looks at zachery

):
- add a new user profile field: Single-Selection Radio Buttons
- title: "Open attachment in new window?"
- in options put "yes" and "no"
- after creating the field, remember the field number (e.g. 25)
- look into the "postbit_attachment*" templates and put into the href-tag (just before the closing ">" the following condition:
Code:
<if condition="($bbuserinfo[field25]=="yes")"> target="_blank"</if>
if you would like to make it standard, then put the following condition inside:
Code:
<if condition="(($bbuserinfo[field25]=="yes") OR ("$bbuserinfo[field25]==""))"> target="_blank"</if>
questions?