diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-08-29 14:48:03 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-08-29 14:48:03 +0000 |
| commit | a19d901463f56065503a7122b997baf99d0f1884 (patch) | |
| tree | 67aeb5cc080b2363f8ff62fb671e4cd46f599246 /upload.php | |
| parent | 01d954e275cf47f4bba2fc1a87ae6ac30e192a4a (diff) | |
| download | fisheye-a19d901463f56065503a7122b997baf99d0f1884.tar.gz fisheye-a19d901463f56065503a7122b997baf99d0f1884.tar.bz2 fisheye-a19d901463f56065503a7122b997baf99d0f1884.zip | |
start work on public galleries - basics working
Diffstat (limited to 'upload.php')
| -rw-r--r-- | upload.php | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_fisheye/upload.php,v 1.17 2006/06/20 16:22:56 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_fisheye/upload.php,v 1.18 2006/08/29 14:48:02 squareing Exp $ * @package fisheye * @subpackage functions */ @@ -72,7 +72,14 @@ $gContent->invokeServices( 'content_edit_function' ); // Get a list of all existing galleries $gFisheyeGallery = new FisheyeGallery(); -$listHash = array( 'user_id' => $gBitUser->mUserId, 'show_empty' => true, 'max_records'=>-1, 'no_thumbnails'=>TRUE, 'sort_mode'=>'title_asc', 'show_empty' => TRUE ); +$listHash = array( + 'user_id' => $gBitUser->mUserId, + 'max_records'=>-1, + 'no_thumbnails'=>TRUE, + 'sort_mode'=>'title_asc', + 'show_empty' => TRUE, + 'show_public' => TRUE +); $galleryList = $gFisheyeGallery->getList( $listHash ); $gBitSmarty->assign_by_ref( 'galleryList', $galleryList['data'] ); |
