Skip to content
Snippets Groups Projects
Commit ed56c57e authored by Steven Wittens's avatar Steven Wittens
Browse files

- #23560: Sort watchdog date by wid to ensure unique ordering.

parent f7039a67
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -88,7 +88,7 @@ function watchdog_overview() { ...@@ -88,7 +88,7 @@ function watchdog_overview() {
$header = array( $header = array(
' ', ' ',
array('data' => t('Type'), 'field' => 'w.type'), array('data' => t('Type'), 'field' => 'w.type'),
array('data' => t('Date'), 'field' => 'w.timestamp', 'sort' => 'desc'), array('data' => t('Date'), 'field' => 'w.wid', 'sort' => 'desc'),
array('data' => t('Message'), 'field' => 'w.message'), array('data' => t('Message'), 'field' => 'w.message'),
array('data' => t('User'), 'field' => 'u.name'), array('data' => t('User'), 'field' => 'u.name'),
array('data' => t('Operations'), 'colspan' => '2') array('data' => t('Operations'), 'colspan' => '2')
......
...@@ -88,7 +88,7 @@ function watchdog_overview() { ...@@ -88,7 +88,7 @@ function watchdog_overview() {
$header = array( $header = array(
' ', ' ',
array('data' => t('Type'), 'field' => 'w.type'), array('data' => t('Type'), 'field' => 'w.type'),
array('data' => t('Date'), 'field' => 'w.timestamp', 'sort' => 'desc'), array('data' => t('Date'), 'field' => 'w.wid', 'sort' => 'desc'),
array('data' => t('Message'), 'field' => 'w.message'), array('data' => t('Message'), 'field' => 'w.message'),
array('data' => t('User'), 'field' => 'u.name'), array('data' => t('User'), 'field' => 'u.name'),
array('data' => t('Operations'), 'colspan' => '2') array('data' => t('Operations'), 'colspan' => '2')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment