summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-28 22:24:48 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-28 22:24:48 +0000
commit007efa52b646f6da5e5d09503f8cadb5933e8a76 (patch)
treec49b698d07cf2f385a7ca75cee16b59468c86645 /includes/theme.inc
parentb1fe1c941eeadd471c06babc02dd0d59160578a0 (diff)
downloadbrdo-007efa52b646f6da5e5d09503f8cadb5933e8a76.tar.gz
brdo-007efa52b646f6da5e5d09503f8cadb5933e8a76.tar.bz2
- Fixed bug #5384: tablesort outputs invalid HTML.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc2
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\"";
}
}