Fix #14967 by adding log_id as the secondary sorting column to log list.
This commit is contained in:
parent
59e1d94ae0
commit
b7b75c83f7
|
@ -311,7 +311,7 @@ class WC_Admin_Log_Table_List extends WP_List_Table {
|
|||
$order = 'DESC';
|
||||
}
|
||||
|
||||
return "ORDER BY {$by} {$order}";
|
||||
return "ORDER BY {$by} {$order}, log_id {$order}";
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue