Hello,
After upgrading from 1.4.2 from 1.4.0.3, I noticed that my images were coming up right. In Gallery, I just get the default image placeholder. And in Albums, I don't get anything to show up at all.
Here is an example of the image links:
LOGGED OUT:
http://adjenz.com/funnypics/cache/34%20Reasons%20Not%20To%20Post%20Your%20Picture%20On%20The%20Web/_{zp-core}_{images}_imageDefault_w228_h155_cw228_ch155_thumb.png
I tried it across all browsers, same effect.
[code]
<div id="alt-galleries">
<ul class="alt-galleries">
<?php $lastcolnum=3;$listall=''; ?>
<?php $x=1; while (next_album($listall)): $lastcol="";
if ($x==$lastcolnum) {$lastcol="id='lastcol'"; $x=0;} ?>
<li class="alt-gallery" <?php echo $lastcol; ?>>
" title="<?php echo gettext('View album:'); ?> <?php echo getBareAlbumTitle();?>">
<?php printCustomAlbumThumbImage(getBareAlbumTitle(),NULL,228,155,228,155); ?>
<span class="album-gallery-bottom"><?php if (getNumAlbums() >= 1) { echo getNumAlbums() . " Sub-Albums "; }?><?php if (getNumImages() >= 1) { echo getNumImages() . " Images"; }?></span>
<h4>" title="<?php echo getBareAlbumTitle().' ('.getAlbumDate().')'; ?>"><?php echo getBareAlbumTitle(); ?></h4>
<?php $x++; endwhile; ?>
</div>
[/code]