Skip to content

Commit

Permalink
chore: fix php warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jeabakker committed Feb 25, 2022
1 parent 6e1200a commit 5c2712e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/default/groups/listing/member.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function (QueryBuilder $qb, $main_alias) {
];
break;
case 'alpha':
$order = strtoupper(get_input('order'));
$order = strtoupper(get_input('order', ''));
if (!in_array($order, ['ASC', 'DESC'])) {
$order = 'ASC';
}
Expand Down

0 comments on commit 5c2712e

Please sign in to comment.