Hot-fix: Core\L10n::t method passing parameter bug

Follow-up to #7379
This commit is contained in:
Hypolite Petovan 2019-07-16 21:18:25 -04:00 committed by GitHub
parent 0b97b32a59
commit 11e4f906c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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);
}
/**