Move L10n::getPokeVerbs() calls to DI::l10n()->getPokeVerbs() calls

This commit is contained in:
Philipp Holzer 2020-01-18 20:56:28 +01:00
parent 5e188d17f9
commit 67f2066b8b
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ function poke_init(App $a)
$verb = Strings::escapeTags(trim($_GET['verb']));
$verbs = L10n::getPokeVerbs();
$verbs = DI::l10n()->getPokeVerbs();
if (!array_key_exists($verb, $verbs)) {
return;
@ -164,7 +164,7 @@ function poke_content(App $a)
$parent = (!empty($_GET['parent']) ? intval($_GET['parent']) : '0');
$verbs = L10n::getPokeVerbs();
$verbs = DI::l10n()->getPokeVerbs();
$shortlist = [];
foreach ($verbs as $k => $v) {