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 committato da GitHub
parent 0b97b32a59
commit 11e4f906c2
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni

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