diff options
| author | Christian Fowler <spider@viovio.com> | 2007-06-21 06:58:56 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2007-06-21 06:58:56 +0000 |
| commit | c2046931d47a5e38babf214ab51bfa6605f5d68a (patch) | |
| tree | 260e0215591aa958ec86ec62770161d64c476e48 /FisheyeImage.php | |
| parent | 45cc5a39ab0c7635a0d3b07d8da5e104f6cb6dbb (diff) | |
| download | fisheye-c2046931d47a5e38babf214ab51bfa6605f5d68a.tar.gz fisheye-c2046931d47a5e38babf214ab51bfa6605f5d68a.tar.bz2 fisheye-c2046931d47a5e38babf214ab51bfa6605f5d68a.zip | |
fix resizeOriginal for background thumbnailer to use processor_parameters column
Diffstat (limited to 'FisheyeImage.php')
| -rw-r--r-- | FisheyeImage.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FisheyeImage.php b/FisheyeImage.php index 194b0e1..6f2b3c0 100644 --- a/FisheyeImage.php +++ b/FisheyeImage.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeImage.php,v 1.58 2007/06/20 23:17:01 nickpalmer Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeImage.php,v 1.59 2007/06/21 06:58:56 spiderr Exp $ * @package fisheye */ @@ -407,8 +407,8 @@ class FisheyeImage extends FisheyeBase { WHERE `content_id`=?"; $this->mDb->query( $query, array( $this->mContentId ) ); $query = "INSERT INTO `".BIT_DB_PREFIX."liberty_process_queue` - (`content_id`, `queue_date`, `log_message`) VALUES (?,?,?)"; - $this->mDb->query( $query, array( $this->mContentId, $gBitSystem->getUTCTime(), $pResizeOriginal ) ); + (`content_id`, `queue_date`, `processor_parameters`) VALUES (?,?,?)"; + $this->mDb->query( $query, array( $this->mContentId, $gBitSystem->getUTCTime(), serialize( array( 'resize_original' => $pResizeOriginal ) ) ) ); } else { $ret = $this->renderThumbnails(); } |
