Just helping someone on the forums and recommended this
Edit teaserthumbnail.module, about line 20
<?php
// We build a clean array of the presets namespaces to store the preset
// itself and not its key
$presets = _imagecache_get_presets();
?>
to
<?php
// We build a clean array of the presets namespaces to store the preset
// itself and not its key
$func = (function_exists('imagecache_presets')) ? 'imagecache_presets' : '_imagecache_get_presets';
$presets = $func();
?>
Fully untested, as I haven't a D5 local install with the required modules
Comments
Comment #1
antipix commenteddoes this solution work for someone ?
with this fix i can go on teaser thumbnail settings page but all settings are empty...
Comment #2
sakib000 commentedsame problem here, every field is empty
Comment #3
hunvreus commentedI never used Imagecache 2 but will have a look at the new api soon. I've got already to upload the latest version with view support and will make sure to make it follow by an Imagecache 2 compatible version.
Comment #4
MetalicusKhan commentedchange (line 22):
to:
Comment #5
hunvreus commentedThis is fixed but not committed yet: I need first to finish the views support.
Comment #6
hunvreus commentedThe latest version is being committed: support for ImageCache 2, as well as Views and RSS.
Comment #7
hunvreus commentedComment #8
hunvreus commented