Skip to content

Commit

Permalink
use the list order, even when grouping by category (#1025)
Browse files Browse the repository at this point in the history
  • Loading branch information
michield committed Mar 28, 2024
1 parent 1192692 commit 33c74f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public_html/lists/admin/subscribelib2.php
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ function ListAvailableLists($userid = 0, $lists_to_show = '')
if (isset($GLOBALS['showCat'])&& $GLOBALS['showCat']===true){
$listspercategory = array();
$categories = array();
$catresult = Sql_query(sprintf('select * from %s %s order by category, listorder, name',
$catresult = Sql_query(sprintf('select * from %s %s order by listorder, name',
$GLOBALS['tables']['list'], $subselect));


Expand Down

0 comments on commit 33c74f7

Please sign in to comment.