Skip to content

Commit

Permalink
Merge pull request #17 from oveleon/develop
Browse files Browse the repository at this point in the history
- Fixed a potential issue with invalid order in member list
  • Loading branch information
zoglo authored Sep 11, 2023
2 parents d96aaaf + 8e2cb67 commit b31a48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contao/modules/ModuleMemberList.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private function getMembers()
$time = Date::floorToMinute();

$arrColumns = ["$t.disable='' AND ($t.start='' OR $t.start<='$time') AND ($t.stop='' OR $t.stop>'$time') "];
$arrOptions = ['order' => ''];
$arrOptions = [];

if (!!$this->ext_orderField)
{
Expand Down

0 comments on commit b31a48e

Please sign in to comment.