change in plog-includes/plog-functions.php go to function (ca. line 100) function generate_title()
go here to case 'picture' section
.... case 'picture': //new line with global $config global $config; $row = get_picture_by_id($GLOBALS['plogger_id']); $picture_name = get_caption_filename($row); //new line with new variable $filename $filename = basename($row["path"]); $row = get_album_by_id($row["parent_album"]); $album_name = SmartStripSlashes($row["name"]);
$row = get_collection_by_id($row["parent_id"]); $collection_name = SmartStripSlashes($row["name"]); //change the end of line from $picture_name to $filename $breadcrumbs = $collection_name . ' » ' . $album_name . ' » ' . $filename;
this change in large picture preview the title from picture-caption to picure-filename the new title is: galleryname » collectionname » albumname » picture-filename a nice day @all uwe