From 024cb3a538fe759be97dc55109ffd9300d18cd4a Mon Sep 17 00:00:00 2001 From: Alexander O'Neill Date: Thu, 1 Nov 2018 15:03:08 -0300 Subject: [PATCH] Fix missing function error. --- bibcite_footnotes.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bibcite_footnotes.module b/bibcite_footnotes.module index b3d9a0b..29eecaa 100644 --- a/bibcite_footnotes.module +++ b/bibcite_footnotes.module @@ -69,7 +69,7 @@ function bibcite_footnotes_preprocess_footnote_list(&$variables) { ], ]; $build = []; - $reference_entity_id = _bibcite_footnotes_get_reference_entity_id_from_bibcite_footnote($fn['reference']); + $reference_entity_id = $fn['reference']; $footnote_link_text = ($dont_show_backlink_text && $reference_entity_id) ? '^' : $fn['value']; if (!is_array($fn['ref_id'])) {