displayimage.php - $album_name . '/' . $picture_title displayimage.php - $album_name . '/' . $picture_title
 

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

displayimage.php - $album_name . '/' . $picture_title

Started by Makc666, August 12, 2004, 08:02:29 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Makc666

In file:
displayimage.php

There is code:
pageheader($album_name . '/' . $picture_title, $meta_keywords, false);

It genereates part of {TITLE}. So after generation the title will look like:
GALLERY_NAME - ALBUM_NAME/PICTURE_TITLE

I Suggest to change that code to:
pageheader($album_name . ' / ' . $picture_title, $meta_keywords, false);
Changes:
'/' to  ' / '

So after this change title will look like:
GALLERY_NAME - ALBUM_NAME / PICTURE_TITLE

It is much pritty.

Once again compare:
GALLERY_NAME - ALBUM_NAME/PICTURE_TITLE <---WAS
GALLERY_NAME - ALBUM_NAME / PICTURE_TITLE <--- AFTER