Issue #466416 by mgifford, benjf, RobLoach | timtrinidad: Add Mouseover Title for dblog Entries.

8.0.x
Alex Pott 2014-09-09 10:22:37 +01:00
parent e3e03023f0
commit a4109b3ba2
1 changed files with 7 additions and 1 deletions

View File

@ -173,7 +173,13 @@ class DbLogController extends ControllerBase {
if ($message && isset($dblog->wid)) {
// Truncate link_text to 56 chars of message.
$log_text = Unicode::truncate(Xss::filter($message, array()), 56, TRUE, TRUE);
$message = $this->l($log_text, 'dblog.event', array('event_id' => $dblog->wid), array('html' => TRUE));
$message = $this->l($log_text, 'dblog.event', array('event_id' => $dblog->wid), array(
'attributes' => array(
// Provide a title for the link for useful hover hints.
'title' => Unicode::truncate(strip_tags($message), 256, TRUE, TRUE),
),
'html' => TRUE,
));
}
$username = array(
'#theme' => 'username',