summaryrefslogtreecommitdiff
path: root/FisheyeGallery.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2007-02-14 05:50:14 +0000
committerChristian Fowler <spider@viovio.com>2007-02-14 05:50:14 +0000
commit4f1a4518b462a4d7c0036613b9a65239d8df1c00 (patch)
treee702467bf1e1d42834f000bbaf69e92daf85912a /FisheyeGallery.php
parent05b1e386273d5c947f60479db8682bce59ae02cd (diff)
downloadfisheye-4f1a4518b462a4d7c0036613b9a65239d8df1c00.tar.gz
fisheye-4f1a4518b462a4d7c0036613b9a65239d8df1c00.tar.bz2
fisheye-4f1a4518b462a4d7c0036613b9a65239d8df1c00.zip
pass pPaginate in export
Diffstat (limited to 'FisheyeGallery.php')
-rw-r--r--FisheyeGallery.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/FisheyeGallery.php b/FisheyeGallery.php
index 32a289b..8f27aba 100644
--- a/FisheyeGallery.php
+++ b/FisheyeGallery.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.48 2007/01/07 03:44:16 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.49 2007/02/14 05:50:14 spiderr Exp $
* @package fisheye
*/
@@ -260,11 +260,11 @@ class FisheyeGallery extends FisheyeBase {
if( $this->loadImages() ) {
foreach( array_keys( $this->mItems ) as $key ) {
if( $pPaginate ) {
- if( $exp = $this->mItems[$key]->exportHtml() ) {
+ if( $exp = $this->mItems[$key]->exportHtml( $pPaginate ) ) {
$ret['content']['page'][$this->getItemPage($key)][] = $exp;
}
} else {
- $ret['content'][] = $this->mItems[$key]->exportHtml();
+ $ret['content'][] = $this->mItems[$key]->exportHtml( $pPaginate );
}
}
}