PDA

View Full Version : Attachments Open In New Window?


GSX-Racing
06-04-2005, 07:37 AM
Hello gang,

This is probably an easy fix but I can't figure it out. I want attachments when clicked, to open in a new window. Right now they are opening in the same window as the post and it's kind of a pain in the rear.

Any help would be greatly appreciated.

Thanks in advance.

Andreas
06-08-2005, 12:34 AM
You must edit some templates:

postbit_attachmentmoderated

<a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]" target="_blank">$attachment[filename]</a>


postbit_attachment

<a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]" target="_blank">$attachment[filename]</a>


postbit_attachmentthumbnail

<a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]" target="_blank"><img class="thumbnail" src="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;stc=1&amp;thumb=1" border="0" alt="<phrase 1="$attachment[filename]" 2="$attachment[counter]" 3="$attachment[filesize]">$vbphrase[image_larger_version_x_y_z]</phrase>" /></a>


The changes are marked bold.

GSX-Racing
06-08-2005, 12:50 AM
Thank you!