diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-29 19:04:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-29 19:04:58 +0000 |
commit | 6912ffbccb88f341a36b172191f33e993a63f8de (patch) | |
tree | 4ca970a3632c767eed207286823137a5048e8451 | |
parent | f3e5986a299d12e292456fb843f4a4cba363a924 (diff) | |
download | brdo-6912ffbccb88f341a36b172191f33e993a63f8de.tar.gz brdo-6912ffbccb88f341a36b172191f33e993a63f8de.tar.bz2 |
- Patch #111241 by dww: added operations column.
-rw-r--r-- | modules/watchdog/watchdog.module | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 90729c402..39784a0bf 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -237,6 +237,10 @@ function watchdog_event($id) { array('data' => t('Hostname'), 'header' => TRUE), $watchdog->hostname, ), + array( + array('data' => t('Operations'), 'header' => TRUE), + $watchdog->link, + ), ); $attributes = array('class' => 'watchdog-event'); $output = theme('table', array(), $rows, $attributes); |