Fix #14967 by adding log_id as the secondary sorting column to log list.

This commit is contained in:
Scott Rees 2017-05-12 10:22:31 -07:00
parent 59e1d94ae0
commit b7b75c83f7
1 changed files with 1 additions and 1 deletions

View File

@ -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}";
}
/**