I'd like to have arrows ( << >> ) in album.php so that visitors can switch to the previous/next album. This works good with
`
<?php if (getPrevAlbum()!="") { ?>
<div class="imgprevious">">
<?php } if (getNextAlbum()!="") { ?>
">
<?php } ?>
</div>
`
..., but I should have a parameter for the title tag. getAlbumTitle only returns the Title of the current album and does not allow parameters. Is it possible to create a workaround?
Wete