gir,
I was wondering why you have a different breadcrumb trail on the image.php page when infinite scrolling is enabled / disabled.
For example, with scrolling off, breadcrumbs show what I prefer:
Gallery Index » Plants » Carnivorous Plants » Pitcherplants » Yellow Pitcherplants
With scrolling on, part of the breadcrumbs show the folder name rather than the album title:
Gallery Index » Plants » Carnivorous Plants » flora/carnivorous/pitcherplants » Yellow Pitcherplants
Currently code has
`
<?php if ( ($zpmas_infscroll) && (in_context(ZP_SEARCH_LINKED)) ) $_zp_current_search->page = '1'; ?>
"><?php echo gettext("Gallery Index"); ?> »
<?php printParentBreadcrumb('',' » ',' » '); ?>
<?php if ($zpmas_infscroll) {
$link = rewrite_path("/" . pathurlencode($_zp_current_album->name) . "/","/index.php?album=" . pathurlencode($_zp_current_album->name)); ?>
name; ?>"><?php echo $_zp_current_album->name; ?> »
<?php } else {
printAlbumBreadcrumb('',' » ');
} ?>
<?php printImageTitle(true); ?>
`
I was wondering if there was any harm in having following regardless of infinite scrolling setting:
`
<?php if ( ($zpmas_infscroll) && (in_context(ZP_SEARCH_LINKED)) ) $_zp_current_search->page = '1'; ?>
"><?php echo gettext("Gallery Index"); ?> »
<?php printParentBreadcrumb('',' » ',' » ');
printAlbumBreadcrumb('',' » ');
?>
<?php printImageTitle(true); ?>
`
Thank you again for the great theme.