From 5e2f58dc912739eb5276f102d9a03198c7590224 Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Wed, 19 Feb 2014 10:58:51 -0600 Subject: [PATCH] html2text: Fix notes with same name different urls --- include/html2text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/html2text.php b/include/html2text.php index 0e1186991..b4486ed9f 100644 --- a/include/html2text.php +++ b/include/html2text.php @@ -277,7 +277,7 @@ class HtmlInlineElement { } function addFootNote($name, $content) { - $this->footnotes[$name] = $content; + $this->footnotes[$content] = $content; return count($this->footnotes); } } -- GitLab