diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-01-26 08:42:18 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-01-26 08:42:18 +0000 |
commit | a0c8a442283ee1690113b07eb4044f82f51668ab (patch) | |
tree | a34a133425731c35372c4a156f0c515f045fb48e | |
parent | 7946eca135a8d936d1cdc5a8f686702462ffa769 (diff) | |
download | brdo-a0c8a442283ee1690113b07eb4044f82f51668ab.tar.gz brdo-a0c8a442283ee1690113b07eb4044f82f51668ab.tar.bz2 |
- Patch #45076 by m3avrck: fix bad markup and title for some watchdog warnings.
-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 3c66a7564..32ffb4f69 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -120,7 +120,7 @@ function watchdog_overview() { $icons[$watchdog->severity], t($watchdog->type), format_date($watchdog->timestamp, 'small'), - l(truncate_utf8($watchdog->message, 64), 'admin/logs/event/'. $watchdog->wid, array(), NULL, NULL, FALSE, TRUE), + l(truncate_utf8($watchdog->message, 56, TRUE, TRUE), 'admin/logs/event/'. $watchdog->wid, array(), NULL, NULL, FALSE, TRUE), theme('username', $watchdog), $watchdog->link, ), diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 3c66a7564..32ffb4f69 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -120,7 +120,7 @@ function watchdog_overview() { $icons[$watchdog->severity], t($watchdog->type), format_date($watchdog->timestamp, 'small'), - l(truncate_utf8($watchdog->message, 64), 'admin/logs/event/'. $watchdog->wid, array(), NULL, NULL, FALSE, TRUE), + l(truncate_utf8($watchdog->message, 56, TRUE, TRUE), 'admin/logs/event/'. $watchdog->wid, array(), NULL, NULL, FALSE, TRUE), theme('username', $watchdog), $watchdog->link, ), |