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 提交者 GitHub
父節點 0b97b32a59
當前提交 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);
}
/**