From 078e2dbc1b845bdc3adfcf7e1dce9de10ab6737d Mon Sep 17 00:00:00 2001 From: Ian Date: Mon, 8 Aug 2022 16:26:42 +0200 Subject: [PATCH] plugins: Fix a SmartyException typo --- libs/plugins/shared.literal_compiler_param.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/plugins/shared.literal_compiler_param.php b/libs/plugins/shared.literal_compiler_param.php index 65caf03c..43bd6ef7 100644 --- a/libs/plugins/shared.literal_compiler_param.php +++ b/libs/plugins/shared.literal_compiler_param.php @@ -26,7 +26,7 @@ function smarty_literal_compiler_param($params, $index, $default = null) if (!preg_match('/^([\'"]?)[a-zA-Z0-9-]+(\\1)$/', $params[ $index ])) { throw new SmartyException( '$param[' . $index . - '] is not a literal and is thus not evaluatable at compile time' + '] is not a literal and is thus not evaluable at compile time' ); } $t = null;