1 reply [Last post]
himagarwal's picture
Offline
Joined: 06/24/2008
Juice: 295
Was this information Helpful?

I was trying to update the present but by mistake I clicked on the delete button of imagecache present "uc_thumbnail". I don't know what settings were used in "uc_thumbnail". Can anyone please let me know.

I am still using drupal 5 with ubercart 1.

Thanks in advance.

johandenhollander's picture
Offline
Joined: 09/27/2007
Juice: 79
I have these two: 1

I have these two:
1 (normal):
$presets = array(); $presets['uc_thumbnail'] = array ( 'presetname' => 'uc_thumbnail', 'actions' => array ( 0 => array ( 'weight' => '0', 'action' => 'imagecache_deprecated_scale', 'data' => array ( 'fit' => 'inside', 'width' => '35', 'height' => '35', ), 'module' => 'imagecache', ), ), );

2 (override):
$presets = array(); $presets['uc_thumbnail'] = array ( 'presetname' => 'uc_thumbnail', 'actions' => array ( 0 => array ( 'weight' => '0', 'action' => 'imagecache_deprecated_scale', 'data' => array ( 'fit' => 'inside', 'width' => '35', 'height' => '35', ), 'module' => 'imagecache', ), ), );