Remove Upload Date in Latest Additions Remove Upload Date in Latest Additions
 

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

Remove Upload Date in Latest Additions

Started by The Reverend Doctor, June 11, 2007, 07:42:21 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

The Reverend Doctor

Is it possible to remove the "upload date" that appears at the bottom of a thumbnail under the Latest Additions section?  I can't seem to figure it out.  Any help is appreciated.

Thanks,
RD

Nibbler

You'll need to edit core code or make a plugin. To edit the code, open include/functions.inc.php,

look for

case 'lastup': // Last uploads

then about 20 lines down, change

if ($set_caption) build_caption($rowset,array('ctime'));

to

if ($set_caption) build_caption($rowset);

The Reverend Doctor