Album Tittle Too Long? Album Tittle Too Long?
 

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

Album Tittle Too Long?

Started by Charity, January 26, 2007, 02:24:45 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Charity

The album tittle is long and it won't let me fit in the whole thing. Is there anyway I can change the setting to allow it to be longer?

eruss

Quote from: Charity on January 26, 2007, 02:24:45 AM
The album tittle is long and it won't let me fit in the whole thing. Is there anyway I can change the setting to allow it to be longer?

You should have 80 characters available.  Is that not enough?  An album name is usually a title or subject rather than a long sentence.

Charity

Well here's an example:

Jessica Simpson & Nick Lachey Host Sony Ericsson T610/T616 "Shoot For The Stars" Charity Auction - November 13, 2003 [HQ]

It's just that I don't want to take words out because they are all important including the date and stuff

Gizmo

Why not use the album description field? It will then display along with the title and thumbnail.
Did you read the manual first???? Taking 2 minutes to backup your files can save you hours of wondering what you screwed up.
Billy Bullock - BullsEyePhotos Blog of Indecision

Charity

but if it possible to allow it to be longer

Nibbler

Edit albmgr.php and up the limit to 255 (imposed by the db schema).


                                <input type="text" name="album_nm" size="27" maxlength="80" class="textinput" style="width: 300px;" onChange="Album_NameChange(this.value);" onKeyUp="Album_NameChange(this.value);" />


to


                                <input type="text" name="album_nm" size="27" maxlength="255" class="textinput" style="width: 300px;" onChange="Album_NameChange(this.value);" onKeyUp="Album_NameChange(this.value);" />


and

text = change_name.substring(0, 80);

to

text = change_name.substring(0, 255);

Charity

Thanks! But I can't find the

text = change_name.substring(0, 80);

in albmgr.php

Charity


Nibbler


Charity

ok i found it now. and it works great. thanks!