Fix class static variable usage.

This commit is contained in:
myl7 2020-11-08 12:30:17 +08:00
parent 184e01c0a6
commit 0f2c9d095d
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ class Context {
$results = [];
foreach ($iso_codes as $iso_code) {
if (!in_array($iso_code, $this->$L10N_ISO_CODES)) {
if (!in_array($iso_code, Context::$L10N_ISO_CODES)) {
continue;
}