- Patch #746822 by Pasqualle: use drupal_html_class().

merge-requests/26/head
Dries Buytaert 2010-03-20 14:55:55 +00:00
parent 3b3f096668
commit 5717ba536e
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ function dblog_overview() {
$dblog->link,
),
// Attributes for tr
'class' => array('dblog-' . preg_replace('/[^a-z]/i', '-', $dblog->type), $classes[$dblog->severity]),
'class' => array(drupal_html_class('dblog-' . $dblog->type), $classes[$dblog->severity]),
);
}