diff options
| author | Christian Fowler <spider@viovio.com> | 2006-11-16 00:14:57 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2006-11-16 00:14:57 +0000 |
| commit | b48cdcb8357151168e4ad363e6f302c553b193af (patch) | |
| tree | e03fc845570cf3587667e863ada7d6d3304f203b /FisheyeGallery.php | |
| parent | aedcf21d2228576c8612f06439e3720ea8ff8232 (diff) | |
| download | fisheye-b48cdcb8357151168e4ad363e6f302c553b193af.tar.gz fisheye-b48cdcb8357151168e4ad363e6f302c553b193af.tar.bz2 fisheye-b48cdcb8357151168e4ad363e6f302c553b193af.zip | |
fix var in lookup
Diffstat (limited to 'FisheyeGallery.php')
| -rw-r--r-- | FisheyeGallery.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FisheyeGallery.php b/FisheyeGallery.php index 151cc76..ccdfec7 100644 --- a/FisheyeGallery.php +++ b/FisheyeGallery.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.44 2006/11/10 18:09:55 spiderr Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.45 2006/11/16 00:14:57 spiderr Exp $ * @package fisheye */ @@ -58,7 +58,7 @@ class FisheyeGallery extends FisheyeBase { $lookupContentGuid = $lookup['content_type_guid']; } } elseif (!empty($pLookupHash['content_id']) && is_numeric($pLookupHash['content_id'])) { - $lookupContentId = $lookup['content_id']; + $lookupContentId = $pLookupHash['content_id']; $lookupContentGuid = NULL; } |
