summaryrefslogtreecommitdiff
path: root/image_order.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-11-22 07:25:48 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-11-22 07:25:48 +0000
commit71866708351b4afcf2788e9d14b09648ae2344a5 (patch)
tree92dc917773700ec3b1f204761a2d861a199f999c /image_order.php
parentdafea8f5bb826fba9321e08ec18ab3bdddac19e1 (diff)
downloadfisheye-71866708351b4afcf2788e9d14b09648ae2344a5.tar.gz
fisheye-71866708351b4afcf2788e9d14b09648ae2344a5.tar.bz2
fisheye-71866708351b4afcf2788e9d14b09648ae2344a5.zip
merge recent changes into HEAD
Diffstat (limited to 'image_order.php')
-rw-r--r--image_order.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/image_order.php b/image_order.php
index f23ceeb..3911d43 100644
--- a/image_order.php
+++ b/image_order.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_fisheye/image_order.php,v 1.7 2005/10/12 15:13:49 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_fisheye/image_order.php,v 1.8 2005/11/22 07:25:47 squareing Exp $
* @package fisheye
* @subpackage functions
*/
@@ -148,9 +148,9 @@ if (!empty($_REQUEST['cancel'])) {
}
// Get a list of all existing galleries
-$listHash = array( 'user_id'=>$gBitUser->mUserId, 'max_records'=>-1, 'no_thumbnails' => TRUE, 'sort_mode'=>'title_asc' );
+$listHash = array( 'user_id' => $gBitUser->mUserId, 'max_records' => -1, 'no_thumbnails' => TRUE, 'sort_mode' => 'title_asc', 'show_empty' => TRUE );
$galleryList = $gContent->getList( $listHash );
-$gBitSmarty->assign_by_ref('galleryList', $galleryList);
+$gBitSmarty->assign_by_ref( 'galleryList', $galleryList['data'] );
$gContent->loadImages();
$gBitSmarty->assign_by_ref('galleryImages', $gContent->mItems);