diff --git a/src/BaseModule.php b/src/BaseModule.php index be4788045c..48677e64fc 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -56,7 +56,7 @@ abstract class BaseModule implements ICanHandleRequests */ protected function t(string $s, ...$args): string { - return $this->l10n->t($s, $args); + return $this->l10n->t($s, ...$args); } /**