I'm using...

views 6.x-2.0-rc1 +
cck 6.x-2.0-rc6 +
imagefield 6.x-3.0-alpha1 +
imagecache 6.x-1.0-alpha2

...to display news stories. When I view the list of articles using views, all of the mouseover title text on the images is changed to "a." However, if I view the node directly, the image title text displays properly.

Apparently views leaves it up to other modules to pass title text...could this be cck or more likely alpha imagefield?

You can view this phenomenon on the front page of bignyc.org by hovering over any image on the front page

Thanks for the help!

Comments

KarenS’s picture

Project: Content Construction Kit (CCK) » ImageField
Version: 6.x-2.0-rc6 » 6.x-3.x-dev
Component: Views Integration » Code

This would be an Imagefield issue.

ComputerWolf’s picture

Project: ImageField » ImageCache
Version: 6.x-3.x-dev » 6.x-1.0-alpha2

Actually, I think it's an imagecache issue and is a duplicate of #299329: No display of alt or title with images - Simple Workaround

Here's hopefully a quick fix for imagecache.module

Right above these lines:

  $alt = empty($item['data']['alt']) ? '' : $item['data']['alt'];
  $title = empty($item['data']['title']) ? '' : $item['data']['title'];

put this:

if (is_string($item['data'])) {
    $item['data'] = unserialize($item['data']);
  }
drewish’s picture

Status: Active » Closed (duplicate)
Raphael Apard’s picture

I fixed this issue by updating filefield-6.x-3.6 to filefield-6.x-3.7.