summaryrefslogtreecommitdiff
path: root/edit.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2006-10-02 03:19:52 +0000
committerChristian Fowler <spider@viovio.com>2006-10-02 03:19:52 +0000
commita7120db2ca8a060a3f25ad568ef6bfe4a3e45549 (patch)
tree798968eb9a9013f82e5ca71be62bb3ee84dd085a /edit.php
parent4c2fa9874b35debf90c9d0bcf9ab3ae6b3f455f2 (diff)
downloadfisheye-a7120db2ca8a060a3f25ad568ef6bfe4a3e45549.tar.gz
fisheye-a7120db2ca8a060a3f25ad568ef6bfe4a3e45549.tar.bz2
fisheye-a7120db2ca8a060a3f25ad568ef6bfe4a3e45549.zip
we WANT to show_empty when editing the gallery so we can move galleries into newly created (and empty) gals
Diffstat (limited to 'edit.php')
-rw-r--r--edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/edit.php b/edit.php
index 8126006..dbb74e6 100644
--- a/edit.php
+++ b/edit.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_fisheye/edit.php,v 1.16 2006/09/06 05:14:29 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_fisheye/edit.php,v 1.17 2006/10/02 03:19:52 spiderr Exp $
* @package fisheye
* @subpackage functions
*/
@@ -98,7 +98,7 @@ $gBitSmarty->assign( 'loadAjax', TRUE );
$gallery = $gContent->getParentGalleries();
$gBitSmarty->assign_by_ref( 'parentGalleries', $gallery );
-$getHash = array( 'user_id' => $gBitUser->mUserId, 'contain_item' => $gContent->mContentId, 'max_records' => -1, 'no_thumbnails' => TRUE, 'sort_mode'=>'title_asc' );
+$getHash = array( 'user_id' => $gBitUser->mUserId, 'contain_item' => $gContent->mContentId, 'max_records' => -1, 'no_thumbnails' => TRUE, 'sort_mode'=>'title_asc', 'show_empty'=>TRUE );
$galleryList = $gContent->getList( $getHash );
$gBitSmarty->assign_by_ref( 'galleryList', $galleryList['data'] );