summaryrefslogtreecommitdiff
path: root/edit_image.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-01-14 19:54:13 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-01-14 19:54:13 +0000
commit7911b3404f7032dd79eb78b766c22375fcf2f8a7 (patch)
tree4b5b03050e8ecf63d4bfba042c18727f23fb90ca /edit_image.php
parent0b0567c2d66d7fa6fdf0c67ce8763d1472a0d574 (diff)
downloadfisheye-7911b3404f7032dd79eb78b766c22375fcf2f8a7.tar.gz
fisheye-7911b3404f7032dd79eb78b766c22375fcf2f8a7.tar.bz2
fisheye-7911b3404f7032dd79eb78b766c22375fcf2f8a7.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 64d7283..50e4f93 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.8 2005/11/22 07:25:47 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_fisheye/edit_image.php,v 1.9 2006/01/14 19:54:13 squareing Exp $
* @package fisheye
* @subpackage functions
*/
@@ -18,7 +18,7 @@ global $gBitSystem;
include_once( FISHEYE_PKG_PATH.'gallery_lookup_inc.php' );
include_once( FISHEYE_PKG_PATH.'image_lookup_inc.php' );
-if ( (!empty($gContent->mImageId)) && ($gContent->mInfo['user_id'] != $gBitUser->mUserId && !$gBitUser->isAdmin()) ) {
+if ( (!empty($gContent->mImageId)) && ($gContent->getField( 'user_id' ) != $gBitUser->mUserId && !$gBitUser->isAdmin()) ) {
// This user does not own this image and they are not an Administrator
$gBitSmarty->assign( 'msg', tra( "You do not own this image!" ) );
$gBitSystem->display( "error.tpl" );
@@ -83,7 +83,7 @@ $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', 'show_empty' => TRUE );
+$listHash = array( 'user_id' => $gContent->isValid() ? $gContent->getField( 'user_id' ) : $gBitUser->mUserId, 'max_records' => -1, 'no_thumbnails' => TRUE, 'sort_mode' => 'title_asc', 'show_empty' => TRUE );
$galleryList = $gFisheyeGallery->getList( $listHash );
$gBitSmarty->assign_by_ref( 'galleryList', $galleryList['data'] );