From 536c8856bc7a33fb03c3d18fcefa304acfd281cf Mon Sep 17 00:00:00 2001
From: Tomas Kozak <tomas.kozak@kiwi.com>
Date: Mon, 6 Aug 2018 14:54:32 +0200
Subject: [PATCH] Fix continue in switch for PHP7.3

---
 tcpdf.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tcpdf.php b/tcpdf.php
index ef411a1..3cdfff4 100644
--- a/tcpdf.php
+++ b/tcpdf.php
@@ -17783,7 +17783,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
 											// justify block
 											if (!TCPDF_STATIC::empty_string($this->lispacer)) {
 												$this->lispacer = '';
-												continue;
+												break;
 											}
 											preg_match('/([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s](re)([\s]*)/x', $pmid, $xmatches);
 											if (!isset($xmatches[1])) {