diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 03d92d980..0547abeff 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -502,7 +502,7 @@ function _theme_table_cell($cell, $header = 0) { if (is_array($cell)) { $data = $cell["data"]; foreach ($cell as $key => $value) { - if ($key != "data") { + if ($key != "data" && $key != "field") { $attributes .= " $key=\"$value\""; } } |