Merge pull request #15051 from reescott/fixlogtable

Fix #14967 by adding log_id as the secondary sorting column to log list.
This commit is contained in:
Mike Jolley 2017-05-12 19:47:18 +01:00 committed by GitHub
commit 5e9f908df7
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}";
}
/**