From 1f9eef51c7e5582218abf5e832494bcb57f595d9 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sat, 4 Jul 2026 13:37:14 +0200 Subject: [PATCH] Fix double semicolon in getRightDelimiter method (#1202) --- src/Template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Template.php b/src/Template.php index 5a8363a5..04c3115c 100644 --- a/src/Template.php +++ b/src/Template.php @@ -535,7 +535,7 @@ class Template extends TemplateBase { */ public function getRightDelimiter() { - return $this->right_delimiter ?? $this->getSmarty()->getRightDelimiter();; + return $this->right_delimiter ?? $this->getSmarty()->getRightDelimiter(); } /**