Skip to content

Commit

Permalink
Fix sordorder
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 17, 2024
1 parent 6c14daa commit 19a5651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion myaccount/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
// Load variable for pagination
$limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : ($mode == 'instance' ? $MAXINSTANCEVIGNETTE : 20);
$sortfield = GETPOST('sortfield', 'alphanohtml');
$sortorder = GETPOST('sortorder', 'alphanohtml');
$sortorder = GETPOST('sortorder', 'aZ09');
$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
if (empty($page) || $page == -1) {
$page = 0;
Expand Down

0 comments on commit 19a5651

Please sign in to comment.