mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-03 09:45:03 +02:00
order activated by desc
This commit is contained in:
parent
ea3f5caf59
commit
0ce112dc70
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ switch ($action) {
|
|||
|
||||
case 'list-activated':
|
||||
$ui->assign('_system_menu', 'list-activated');
|
||||
$query = ORM::for_table('tbl_transactions')->where('username', $user['username'])->order_by_asc('id');
|
||||
$query = ORM::for_table('tbl_transactions')->where('username', $user['username'])->order_by_desc('id');
|
||||
$d = Paginator::findMany($query);
|
||||
|
||||
$ui->assign('d', $d);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue