From ed56c57ee0d76215e7021bcaedd36af6992f9303 Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Sat, 6 Aug 2005 00:35:38 +0000 Subject: [PATCH] - #23560: Sort watchdog date by wid to ensure unique ordering. --- modules/watchdog.module | 2 +- modules/watchdog/watchdog.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/watchdog.module b/modules/watchdog.module index 4793132b9d01..9b6ac0243da2 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -88,7 +88,7 @@ function watchdog_overview() { $header = array( ' ', 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('User'), 'field' => 'u.name'), array('data' => t('Operations'), 'colspan' => '2') diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 4793132b9d01..9b6ac0243da2 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -88,7 +88,7 @@ function watchdog_overview() { $header = array( ' ', 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('User'), 'field' => 'u.name'), array('data' => t('Operations'), 'colspan' => '2') -- GitLab