diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-08-06 00:35:38 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-08-06 00:35:38 +0000 |
commit | ed56c57ee0d76215e7021bcaedd36af6992f9303 (patch) | |
tree | a1ed2ce120d9cfe0266180fcfdc4d37af52d6683 | |
parent | f7039a67cc7e59307396a962f5e435120251ec29 (diff) | |
download | brdo-ed56c57ee0d76215e7021bcaedd36af6992f9303.tar.gz brdo-ed56c57ee0d76215e7021bcaedd36af6992f9303.tar.bz2 |
- #23560: Sort watchdog date by wid to ensure unique ordering.
-rw-r--r-- | modules/watchdog.module | 2 | ||||
-rw-r--r-- | modules/watchdog/watchdog.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module index 4793132b9..9b6ac0243 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 4793132b9..9b6ac0243 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') |