diff options
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 2a91b08d8..d46b31a06 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -702,8 +702,8 @@ function theme_table($header, $rows, $attributes = NULL) { $cells = $row; } - // Add light/dark class - $class = ($number % 2 == 1) ? 'light': 'dark'; + // Add odd/even class + $class = ($number % 2 == 1) ? 'even': 'odd'; if (isset($attributes['class'])) { $attributes['class'] .= ' '. $class; } |