If title is not set, _link_sanitize still tries to trim it.
elseif (drupal_strlen(trim($item['title']))) {
$title = $item['title'];
}
If title is not set, _link_sanitize still tries to trim it.
elseif (drupal_strlen(trim($item['title']))) {
$title = $item['title'];
}
Comments
Comment #2
romixuaComment #3
IreneV commentedComment #4
IreneV commentedAlready fixed.
In latest module version:
elseif (isset($item['title']) && drupal_strlen(trim($item['title']))) {
$title = $item['title'];
}
Comment #5
IreneV commentedComment #6
pifagor commentedComment #7
ram4nd commentedComment #8
sportch commentedI don't think the isset code from #4 is in link 7.x-1.6 ??
Comment #10
AlexandreNarten commentedI concur with sportch. the code from #4 is not in link 7.x-1.6. It is in the 7.x-dev.
When is the next release?
Comment #11
strykaizerFor more info: issue #2974486 has the relevant patch which is in dev