diff options
| author | spiderr <spider@viovio.com> | 2010-07-25 01:29:27 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2010-07-25 01:29:27 -0400 |
| commit | 27b22f69abebeaec534fd1c6a9742399b428fe99 (patch) | |
| tree | eb436f0c09e87d5774f45a3428cd2a91fac4664a | |
| parent | 452e14c240202d8cb58b2ef467382b053e29b45f (diff) | |
| download | fisheye-27b22f69abebeaec534fd1c6a9742399b428fe99.tar.gz fisheye-27b22f69abebeaec534fd1c6a9742399b428fe99.tar.bz2 fisheye-27b22f69abebeaec534fd1c6a9742399b428fe99.zip | |
remove duplicate array nesting in getRow call
| -rw-r--r-- | FisheyeImage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FisheyeImage.php b/FisheyeImage.php index eb9bdb0..c2afe38 100644 --- a/FisheyeImage.php +++ b/FisheyeImage.php @@ -89,7 +89,7 @@ class FisheyeImage extends FisheyeBase { LEFT JOIN `".BIT_DB_PREFIX."users_favorites_map` ufm ON (ufm.`favorite_content_id`=lc.`content_id` AND ufm.`user_id`=uuc.`user_id`) LEFT OUTER JOIN `".BIT_DB_PREFIX."liberty_content_hits` lch ON ( lch.`content_id` = lc.`content_id` ) $joinSql $whereSql"; - if( $this->mInfo = $this->mDb->getRow( $sql, array( $bindVars ) ) ) { + if( $this->mInfo = $this->mDb->getRow( $sql, $bindVars ) ) { $this->mImageId = $this->mInfo['image_id']; $this->mContentId = $this->mInfo['content_id']; |
