From 05c208c3c5966a9d608cd2eb5aaf2c55d74393af Mon Sep 17 00:00:00 2001 From: Celestora Date: Mon, 20 Sep 2021 20:24:10 +0300 Subject: [PATCH] Get rid of yaml_parse_file in __global__::getLanguages --- bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.php b/bootstrap.php index 89b03fe1..518e2941 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -103,7 +103,7 @@ function setLanguage($lg): void function getLanguages(): array { - return yaml_parse_file(OPENVK_ROOT . "/locales/list.yml")['list']; + return chandler_parse_yaml(OPENVK_ROOT . "/locales/list.yml")['list']; } function isLanguageAvailable($lg): bool