summaryrefslogtreecommitdiff
path: root/edit_image.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 /edit_image.php
parentdafea8f5bb826fba9321e08ec18ab3bdddac19e1 (diff)
downloadfisheye-71866708351b4afcf2788e9d14b09648ae2344a5.tar.gz
fisheye-71866708351b4afcf2788e9d14b09648ae2344a5.tar.bz2
fisheye-71866708351b4afcf2788e9d14b09648ae2344a5.zip
merge recent changes into HEAD
Diffstat (limited to 'edit_image.php')
-rw-r--r--edit_image.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/edit_image.php b/edit_image.php
index dbe2323..64d7283 100644
--- a/edit_image.php
+++ b/edit_image.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_fisheye/edit_image.php,v 1.7 2005/09/03 10:19:11 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_fisheye/edit_image.php,v 1.8 2005/11/22 07:25:47 squareing Exp $
* @package fisheye
* @subpackage functions
*/
@@ -83,9 +83,9 @@ $gContent->loadParentGalleries();
// Get a list of all existing galleries
$gFisheyeGallery = new FisheyeGallery();
-$listHash = array( 'user_id'=>$gContent->mInfo['user_id'], 'max_records' => -1, 'no_thumbnails' => TRUE, 'sort_mode'=>'title_asc' );
+$listHash = array( 'user_id' => $gContent->mInfo['user_id'], 'max_records' => -1, 'no_thumbnails' => TRUE, 'sort_mode' => 'title_asc', 'show_empty' => TRUE );
$galleryList = $gFisheyeGallery->getList( $listHash );
-$gBitSmarty->assign_by_ref('galleryList', $galleryList);
+$gBitSmarty->assign_by_ref( 'galleryList', $galleryList['data'] );
$gBitSmarty->assign('requested_gallery', !empty($_REQUEST['gallery_id']) ? $_REQUEST['gallery_id'] : NULL);