- 🇩🇪Germany yannickoo Berlin
📣 Drupal 7 has officially reached it's EOL in January 2025, we are closing this issue accordingly
The code below doesn't check if the values have been set before using them:
// Building an array which looks like the parameters you pass to l().
$linked_field_settings = array(
'linked' => $settings['linked_field']['linked'],
'text' => $settings['linked_field']['advanced']['text'],
'path' => $path,
'options' => array(
'attributes' => array(
'title' => $settings['linked_field']['advanced']['title'],
'target' => $settings['linked_field']['advanced']['target'],
'class' => $settings['linked_field']['advanced']['class'],
'rel' => $settings['linked_field']['advanced']['rel'],
),
) + $destination_parsed,
);
Adding an isset check works. But maybe an earlier check would work better.
Closed: won't fix
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
📣 Drupal 7 has officially reached it's EOL in January 2025, we are closing this issue accordingly