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

Follow-up to #7379
このコミットが含まれているのは:
Hypolite Petovan 2019-07-16 21:18:25 -04:00 committed by GitHub
コミット 11e4f906c2
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除

ファイルの表示

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