diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-11-10 16:39:49 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-11-10 16:39:49 +0000 |
| commit | 2f54b21f30275fd9bd7413a0ba7c84f6f582482e (patch) | |
| tree | 7370f1b49b6883ad26ff531c3d2ca490a65cdf94 /upload.php | |
| parent | ccf2d5ec60e64b924bbb3e0c4462a3c995531615 (diff) | |
| download | fisheye-2f54b21f30275fd9bd7413a0ba7c84f6f582482e.tar.gz fisheye-2f54b21f30275fd9bd7413a0ba7c84f6f582482e.tar.bz2 fisheye-2f54b21f30275fd9bd7413a0ba7c84f6f582482e.zip | |
make public gallery display during file upload optional
Diffstat (limited to 'upload.php')
| -rw-r--r-- | upload.php | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_fisheye/upload.php,v 1.20 2006/11/10 15:49:13 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_fisheye/upload.php,v 1.21 2006/11/10 16:39:49 squareing Exp $ * @package fisheye * @subpackage functions */ @@ -86,6 +86,9 @@ $listHash = array( 'sort_mode'=>'title_asc', 'show_empty' => TRUE, ); +if( $gBitSystem->isFeatureActive( 'fisheye_show_public_on_upload' ) ) { + $listHash['show_public'] = TRUE; +} $galleryList = $gFisheyeGallery->getList( $listHash ); $gBitSmarty->assign_by_ref( 'galleryList', $galleryList['data'] ); |
