summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-01-29 19:04:58 +0000
committerDries Buytaert <dries@buytaert.net>2007-01-29 19:04:58 +0000
commit6912ffbccb88f341a36b172191f33e993a63f8de (patch)
tree4ca970a3632c767eed207286823137a5048e8451
parentf3e5986a299d12e292456fb843f4a4cba363a924 (diff)
downloadbrdo-6912ffbccb88f341a36b172191f33e993a63f8de.tar.gz
brdo-6912ffbccb88f341a36b172191f33e993a63f8de.tar.bz2
- Patch #111241 by dww: added operations column.
-rw-r--r--modules/watchdog/watchdog.module4
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);