Date underneath the thumbnails in Albumview Date underneath the thumbnails in Albumview
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Date underneath the thumbnails in Albumview

Started by altenae, October 23, 2011, 01:00:32 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

altenae

Hello,

I have a question about the coppermine version 1.5.16

In the last additions thumbnails the upload date is underneath the thumbnails.
Howerver when you go into an album the date is not underneath the thumbnails.

Is there a way to make the upload date visible underneath the thumbnails in the albumview.

Thank you,

Edward

Αndré

Open include/functions.inc.php, find
        // Set picture caption
        if ($set_caption) {
            if ($CONFIG['display_thumbnail_rating'] == 1) {
                build_caption($rowset, array('pic_rating'));
            } else {
                build_caption($rowset);
            }
        }

and replace with
        // Set picture caption
        if ($set_caption) {
            if ($CONFIG['display_thumbnail_rating'] == 1) {
                build_caption($rowset, array('pic_rating', 'ctime'));
            } else {
                build_caption($rowset, array('ctime'));
            }
        }

altenae



Αndré

Please
Quote from: Joachim Müller on September 28, 2008, 12:46:26 PM
tag your answer as "solved" by clicking on the "Topic Solved" button on the bar at the left hand side at the bottom of your thread.