diff --git a/themes/zuitedesk/template.php b/themes/zuitedesk/template.php index f090e2f..9d66179 100644 --- a/themes/zuitedesk/template.php +++ b/themes/zuitedesk/template.php @@ -490,7 +490,7 @@ function zuitedesk_table($header, $rows, $attributes = array(), $caption = NULL) if (!in_array($attributes['id'], array('tasks'))) { $attributes['class'] = 'table table-condensed' . (!empty($attributes['class']) ? ' ' . $attributes['class'] : ''); } - if (arg(0) == 'admin' || in_array($attributes['id'], array('attributes', 'stormorganizations', 'stormpeople', 'stormteams', 'stormprojects', 'tasks', 'stormtasks', 'stormtickets', 'stormnotes', 'stormideas', 'stormdoks', 'stormtimetrackings', 'stormevents', 'stormtrash', 'twatcher'))) { + if (arg(0) == 'admin' || substr($attributes['id'], 0, 5) == 'storm' || in_array($attributes['id'], array('attributes', 'tasks', 'twatcher'))) { $attributes['class'] .= ' table-hover'; return '
' . theme_table($header, $rows, $attributes, $caption) . '
'; }