Compare commits

..

1 commit

Author SHA1 Message Date
rxu
425a6a182c
Merge 3f4be7e3af into 9c49a2b86b 2025-06-16 10:16:35 +07:00

View file

@ -135,6 +135,17 @@ class language_file_helper
*/
private static function sort_by_local_name(mixed $a, mixed $b): int
{
return $a['local_name'] <=> $b['local_name'];
if ($a['local_name'] > $b['local_name'])
{
return 1;
}
else if ($a['local_name'] < $b['local_name'])
{
return -1;
}
else
{
return 0;
}
}
}