Merge branch '3.5.5' into 3.6

This commit is contained in:
Romain Neutron
2011-12-28 15:00:18 +01:00
14 changed files with 45 additions and 22 deletions

View File

@@ -863,9 +863,9 @@ class record_adapter implements record_Interface, cache_cacheableInterface
$titles = array();
foreach ($retrieved_fields as $key => $value)
{
if (trim($value === ''))
if (trim($value['value'] === ''))
continue;
$titles[] = $value;
$titles[] = $value['value'];
}
$title = trim(implode(' - ', $titles));
}