diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 12:22:33 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-26 12:22:33 +0300 |
commit | ee4c1ba5a87ae6c15fa187c40ff94939f09ab6a8 (patch) | |
tree | 42bfaeaeb94bacc6df7cb31cd20a898713e9fde9 | |
parent | 6dedac19292b4979a7b15aea02d7f1366b4902bc (diff) | |
download | forums-ee4c1ba5a87ae6c15fa187c40ff94939f09ab6a8.tar forums-ee4c1ba5a87ae6c15fa187c40ff94939f09ab6a8.tar.gz forums-ee4c1ba5a87ae6c15fa187c40ff94939f09ab6a8.tar.bz2 forums-ee4c1ba5a87ae6c15fa187c40ff94939f09ab6a8.tar.xz forums-ee4c1ba5a87ae6c15fa187c40ff94939f09ab6a8.zip |
[ticket/11956] Check for children elements in tables
PHPBB3-11956
-rw-r--r-- | phpBB/styles/prosilver/template/forum_fn.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js index 3b13211362..35b8290e5c 100644 --- a/phpBB/styles/prosilver/template/forum_fn.js +++ b/phpBB/styles/prosilver/template/forum_fn.js @@ -800,7 +800,7 @@ function parse_document(container) return; } - if (text.length && text !== '-') { + if ((text.length && text !== '-') || cell.children().length) { cell.prepend('<dfn style="display: none;">' + headers[column] + '</dfn>'); } else { |