diff options
| author | Christian Fowler <spider@viovio.com> | 2006-10-02 03:19:52 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2006-10-02 03:19:52 +0000 |
| commit | a7120db2ca8a060a3f25ad568ef6bfe4a3e45549 (patch) | |
| tree | 798968eb9a9013f82e5ca71be62bb3ee84dd085a /edit.php | |
| parent | 4c2fa9874b35debf90c9d0bcf9ab3ae6b3f455f2 (diff) | |
| download | fisheye-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.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'] ); |
