From 66df6587ac2c04ba233634e6c0a496cfb7cb5d35 Mon Sep 17 00:00:00 2001 From: russellmann <819972+russellmann@users.noreply.github.com> Date: Tue, 28 Dec 2021 04:06:55 -0800 Subject: [PATCH] fix - Named links have been broken. This fixes. (#415) Co-authored-by: Nicola Asuni --- tcpdf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcpdf.php b/tcpdf.php index 3f903e4..462b50c 100644 --- a/tcpdf.php +++ b/tcpdf.php @@ -8445,7 +8445,7 @@ class TCPDF { if (is_string($pl['txt']) && !empty($pl['txt'])) { if ($pl['txt'][0] == '#') { // internal destination - $annots .= ' /A <>'; + $annots .= ' /A <>'; } elseif ($pl['txt'][0] == '%') { // embedded PDF file $filename = basename(substr($pl['txt'], 1));