Skip to content
Snippets Groups Projects
Commit a0c8a442 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #45076 by m3avrck: fix bad markup and title for some watchdog warnings.

parent 7946eca1
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -120,7 +120,7 @@ function watchdog_overview() { ...@@ -120,7 +120,7 @@ function watchdog_overview() {
$icons[$watchdog->severity], $icons[$watchdog->severity],
t($watchdog->type), t($watchdog->type),
format_date($watchdog->timestamp, 'small'), 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), theme('username', $watchdog),
$watchdog->link, $watchdog->link,
), ),
......
...@@ -120,7 +120,7 @@ function watchdog_overview() { ...@@ -120,7 +120,7 @@ function watchdog_overview() {
$icons[$watchdog->severity], $icons[$watchdog->severity],
t($watchdog->type), t($watchdog->type),
format_date($watchdog->timestamp, 'small'), 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), theme('username', $watchdog),
$watchdog->link, $watchdog->link,
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment