summaryrefslogtreecommitdiff
path: root/FisheyeGallery.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2007-10-24 04:38:17 +0000
committerChristian Fowler <spider@viovio.com>2007-10-24 04:38:17 +0000
commitc21e89b1cfe63c13aec95c7af465d82195997abe (patch)
tree717dd11a9f951e3d8cb83f5e03a25cde74c340fb /FisheyeGallery.php
parent237479569bc859f065cb4d83baccfb2cb00e1858 (diff)
downloadfisheye-c21e89b1cfe63c13aec95c7af465d82195997abe.tar.gz
fisheye-c21e89b1cfe63c13aec95c7af465d82195997abe.tar.bz2
fisheye-c21e89b1cfe63c13aec95c7af465d82195997abe.zip
use getThumbnailUri
Diffstat (limited to 'FisheyeGallery.php')
-rw-r--r--FisheyeGallery.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/FisheyeGallery.php b/FisheyeGallery.php
index 4351053..a83f32c 100644
--- a/FisheyeGallery.php
+++ b/FisheyeGallery.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.69 2007/10/10 12:10:20 nickpalmer Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.70 2007/10/24 04:38:16 spiderr Exp $
* @package fisheye
*/
@@ -653,6 +653,7 @@ vd( $this->mErrors );
$data[$galleryId]['display_url'] = $this->getDisplayUrl( $galleryId );
if( $thumbImage = $this->getThumbnailImage( $data[$galleryId]['content_id'], $data[$galleryId]['preview_content_id'], $data[$galleryId]['preview_content_type_guid'] ) ) {
$data[$galleryId]['thumbnail_url'] = $thumbImage->getThumbnailUrl( $thumbsize );
+ $data[$galleryId]['thumbnail_uri'] = $thumbImage->getThumbnailUri( $thumbsize );
} elseif( !empty( $pListHash['show_empty'] ) ) {
$data[$galleryId]['thumbnail_url'] = FISHEYE_PKG_URL.'image/no_image.png';
} else {