coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: Vargha on October 29, 2006, 02:28:27 AM

Title: length of a comment in thumbnail view
Post by: Vargha on October 29, 2006, 02:28:27 AM
hi there, i would like to limit the length of a comment in thumbnail view, because it messes up the template
is the anyway to do this?
thanks alot for reading

Vargha~
Title: Re: length of a comment in thumbnail view
Post by: Sami on October 29, 2006, 06:09:27 AM
AFAIK you can't show comment under thumbnails on standard CPG
Are you using a MOD to display comment on thumbnail view ?
- Post a refernce to that mod
Title: Re: length of a comment in thumbnail view
Post by: Stramm on October 29, 2006, 06:45:16 AM
if you talk about the last comments meta album, then it's already limited to 50 chars. To change that find in functions.inc.php
            $msg_body = utf_strlen($msg_body) > 50 ? utf_substr($msg_body,0,50).'...': $msg_body;
and change it to your needs
Title: Re: length of a comment in thumbnail view
Post by: Vargha on October 29, 2006, 07:20:20 AM
thanks alot, problem solved :)