Merge branch '3.3.x'

This commit is contained in:
Marc Alexander 2025-06-16 10:37:08 +02:00
commit b8c49f9711
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

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