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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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.