Revision 963f9de3
Added by Andreas Kohlbecker over 2 years ago
modules/cdm_dataportal/includes/descriptions.inc | ||
---|---|---|
434 | 434 |
$footnotes_markup = ''; |
435 | 435 |
foreach ($footnote_keys as $foot_note_key) { |
436 | 436 |
try { |
437 |
$footnotes_markup .= theme('cdm_footnote_key', |
|
438 |
array( |
|
439 |
'footnoteKey' => $foot_note_key, |
|
440 |
'separator' => ($footnotes_markup ? $separator : '') |
|
441 |
)); |
|
437 |
$footnotes_markup .= cdm_footnote_key($foot_note_key, ($footnotes_markup ? $separator : '')); |
|
442 | 438 |
} catch (Exception $e) { |
443 | 439 |
drupal_set_message("Exception: " . $e->getMessage(), 'error'); |
444 | 440 |
} |
Also available in: Unified diff
ref #8543 replacing theme_cdm_footnote_key() by cdm_footnote_key()