Darrel,
using D6.dev (which raises warnings for all PHP E_ALL problems) i get this warning every time a imagecache image is displayed: notice: Undefined index: title in */imagecache/imagecache.module on line 617
Its fixed if, on that given line, you place:
$image_alt = empty($item['data']['alt']) ? '' : $item['data']['alt'];
$image_title = empty($item['data']['title']) ? '' : $item['data']['title'];
return theme('imagecache', $presetname, $item['filepath'], $image_alt, $image_title);
Sorry for not creating a proper patch file.
regards,
massa
Comments
Comment #1
brmassa commentedComment #2
drewish commentedpost a patch please.
Comment #3
drewish commentedlooks like it was fixed elsewhere.