Fix double semicolon in getRightDelimiter method (#1202)

This commit is contained in:
colemanw
2026-07-04 13:37:14 +02:00
committed by GitHub
parent 94a27cbbc7
commit 1f9eef51c7
+1 -1
View File
@@ -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();
}
/**