]> git.mxchange.org Git - friendica.git/commitdiff
Hot-fix: Core\L10n::t method passing parameter bug
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 17 Jul 2019 01:18:25 +0000 (21:18 -0400)
committerGitHub <noreply@github.com>
Wed, 17 Jul 2019 01:18:25 +0000 (21:18 -0400)
Follow-up to #7379

src/Core/L10n.php

index 1eae16bca868352abaeea26c8b76368c5af6ae32..55991dab418a1ff6ce7e33367943b2398e700533 100644 (file)
@@ -81,7 +81,7 @@ class L10n
         */
        public static function t($s, ...$vars)
        {
-               return self::$l10n->t($s, $vars);
+               return self::$l10n->t($s, ...$vars);
        }
 
        /**