If you hit the Gallery button you see the latest pictures at the top but not the title
in Gallery.template.php
// Show Last Post
if (!empty($gallerySettings['gallery_set_show_cat_latest_pictures']))
{
echo '<td class="windowbg">';
if (!empty($row['ID_PICTURE']))
{
echo '<span class="smalltext">' . $txt['gallery_last_post'], ' <a href="',$scripturl,'?action=profile;u=',$row['ID_MEMBER'],'">',$row['realName'],'</a><br />',
'<a href="' . $scripturl . '?action=gallery;sa=view;id=',$row['ID_PICTURE'],'">',shorten_subject($row['pictitle'], 24) . '</a><br />',$txt['gallery_txt_on'],timeformat($row['date']) . '</span>';
}
echo '</td>';
}