Browse code

Fixed a potential issue with invalid order in member list

Sebastian Zoglowek authored on11/09/2023 11:41:54
Showing1 changed files
... ...
@@ -201,7 +201,7 @@ class ModuleMemberList extends ModuleMemberExtension
201 201
         $time = Date::floorToMinute();
202 202
 
203 203
         $arrColumns = ["$t.disable='' AND ($t.start='' OR $t.start<='$time') AND ($t.stop='' OR $t.stop>'$time') "];
204
-        $arrOptions = ['order' => ''];
204
+        $arrOptions = [];
205 205
 
206 206
         if (!!$this->ext_orderField)
207 207
         {