Skip to content

Commit

Permalink
Issue #1145700 by jbrown, mr.baileys, joachim: harden link display on…
Browse files Browse the repository at this point in the history
… dblogoverview screen in case the link might be dependent on user input with any contrib module
  • Loading branch information
rjbrown99 committed May 1, 2012
1 parent 4085a4c commit 0c4ad3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dblog/dblog.admin.inc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function dblog_overview() {
format_date($dblog->timestamp, 'small'),
l(truncate_utf8(_dblog_format_message($dblog), 56, TRUE, TRUE), 'admin/reports/event/'. $dblog->wid, array('html' => TRUE)),
theme('username', $dblog),
$dblog->link,
filter_xss($dblog->link),
),
// Attributes for tr
'class' => "dblog-". preg_replace('/[^a-z]/i', '-', $dblog->type) .' '. $classes[$dblog->severity]
Expand Down

0 comments on commit 0c4ad3d

Please sign in to comment.