Hey welcome back,
Is it for forum image attachments or photo gallery, or both?
forum look in /includes/forum_includes.php look for...
Code$res = "<a target='_blank' href='".FORUM."attachments/".$file."' rel='attach_".$rel."' title='".$file."'><img src='".FORUM."attachments/".$file."' alt='".$file."' style='border:0px; width:".$img_w."px; height:".$img_h."px;' /></a>\n";
Change it to....
Code $res = "<a target='_blank' href='".FORUM."attachments/".$file."' rel='attach_".$rel."' title=''><img src='".FORUM."attachments/".$file."' alt='".$file."' style='border:0px; width:".$img_w."px; height:".$img_h."px;' /></a>\n";
I think.
|