series.cgi: ignore case on sort by name

This commit is contained in:
Milan
2020-12-19 21:49:18 +01:00
parent b1c8d20945
commit 78f9f3c538

View File

@@ -1087,7 +1087,7 @@ sub show_series {
$studio_user->{user_id} = $studio_user->{id};
}
my @users = @$studio_users;
@users = sort { $a->{full_name} cmp $b->{full_name} } @users;
@users = sort { lc $a->{full_name} cmp lc $b->{full_name} } @users;
$studio_users = \@users;
#show events from last month until next 3 months