From: Hypolite Petovan Date: Wed, 17 Jul 2019 01:18:25 +0000 (-0400) Subject: Hot-fix: Core\L10n::t method passing parameter bug X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=11e4f906c2e7904cfa067f4ae685e8e25baefb97;p=friendica.git Hot-fix: Core\L10n::t method passing parameter bug Follow-up to #7379 --- 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); } /**