I just uploaded to my server and the function `printParentBreadcrumb()` function prints `...` instead of `»`
My code in image.php is following:
`
<?php
printParentBreadcrumb(""," » "," » ");
printAlbumBreadcrumb(" ", " » ");
?>
<?php printImageTitle(true); ?> (<?php echo imageNumber() . "/" . getNumImages(); ?>)
`
The example here:
http://goo.gl/pDgBi
Comments
IF the parent name is too long it truncates otherwise.
Btw, I suggest to change this footer line "Zenpage theme by Anton Puttemans" as the "Zenpage theme" is by me (and this is not the Zenpage theme).
A bit strange because on localhost `printParentBreadcrumb(""," » "," » ");` worked fine and on my hosted server I needed `printParentBreadcrumb(""," » "," » ", NULL, "");`
Oh well, sorry about the footer acrylian, it's just some test pages, but I will remove the "Zenpage theme" part
Right, the NULL issue I did forget completly. However that last parameter should remove hte elipsis if you set it to "" (empty) actually...