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

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

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