forum.coppermine-gallery.net

No Support => Feature requests => Topic started by: Makc666 on August 12, 2004, 08:02:29 pm

Title: displayimage.php - $album_name . '/' . $picture_title
Post by: Makc666 on August 12, 2004, 08:02:29 pm
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