From 61d63866395976e55bec59d30a43bd339d655353 Mon Sep 17 00:00:00 2001 From: Nikita Pozdeev Date: Tue, 28 Dec 2021 16:07:45 +0400 Subject: [PATCH] fix text-annotation state options (#412) Co-authored-by: Nicola Asuni --- tcpdf.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tcpdf.php b/tcpdf.php index 462b50c..11b94bf 100644 --- a/tcpdf.php +++ b/tcpdf.php @@ -8418,8 +8418,13 @@ class TCPDF { } else { $annots .= ' /Name /Note'; } + $hasStateModel = isset($pl['opt']['statemodel']); + $hasState = isset($pl['opt']['state']); $statemodels = array('Marked', 'Review'); - if (isset($pl['opt']['statemodel']) AND in_array($pl['opt']['statemodel'], $statemodels)) { + if (!$hasStateModel && !$hasState) { + break; + } + if ($hasStateModel AND in_array($pl['opt']['statemodel'], $statemodels)) { $annots .= ' /StateModel /'.$pl['opt']['statemodel']; } else { $pl['opt']['statemodel'] = 'Marked'; @@ -8430,7 +8435,7 @@ class TCPDF { } else { $states = array('Accepted', 'Rejected', 'Cancelled', 'Completed', 'None'); } - if (isset($pl['opt']['state']) AND in_array($pl['opt']['state'], $states)) { + if ($hasState AND in_array($pl['opt']['state'], $states)) { $annots .= ' /State /'.$pl['opt']['state']; } else { if ($pl['opt']['statemodel'] == 'Marked') {