From 11e4f906c2e7904cfa067f4ae685e8e25baefb97 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Tue, 16 Jul 2019 21:18:25 -0400 Subject: [PATCH] Hot-fix: Core\L10n::t method passing parameter bug Follow-up to #7379 --- src/Core/L10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/L10n.php b/src/Core/L10n.php index 1eae16bca8..55991dab41 100644 --- a/src/Core/L10n.php +++ b/src/Core/L10n.php @@ -81,7 +81,7 @@ class L10n */ public static function t($s, ...$vars) { - return self::$l10n->t($s, $vars); + return self::$l10n->t($s, ...$vars); } /** -- 2.39.5