1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Fix for getUsersInClass order.

This commit is contained in:
Cameron
2019-04-20 13:45:13 -07:00
parent f4b1cc471c
commit e3fcbabe56

View File

@@ -1201,7 +1201,7 @@ class user_class
$ret = array();
$query = "SELECT user_id,{$fields} FROM `#user` WHERE ".implode(" OR ",$qry);
$query = "SELECT user_id,{$fields} FROM `#user` WHERE ".implode(" OR ",$qry)." ORDER BY ".$orderBy;
if ($sql->gen($query))
{