MyBB Community Forums

Full Version: Attachment title
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello all,

when I mouse hover on attachment link, title appears like: <span title=

[Image: Untitled.png]
Any way I can edit this to File Name?

Here I changed the Title to Post Date Time

Go To : inc/functions_post.php:

Find
$attachdate = my_date('relative', $attachment['dateuploaded']);


Paste
$attachdate = date($mybb->settings['dateformat'], $attachment['dateuploaded']) . " - " . date($mybb->settings['timeformat'], $attachment['dateuploaded']); 

Thanks