1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 19:24:01 +02:00

[ticket/11956] Fix member list page

PHPBB3-11956
This commit is contained in:
Vjacheslav Trushkin
2013-10-21 15:17:48 +03:00
parent b196c9e8ff
commit e660c1a554
2 changed files with 9 additions and 1 deletions

View File

@@ -546,7 +546,7 @@ function insert_single_user(formId, user)
i, headersLength;
// Find each header
th.each(function() {
th.each(function(column) {
var cell = $(this),
colspan = parseInt(cell.attr('colspan')),
dfn = cell.attr('data-dfn'),
@@ -558,6 +558,10 @@ function insert_single_user(formId, user)
headers.push(text);
}
totalHeaders ++;
if (dfn && !column) {
$this.addClass('show-header');
}
});
headersLength = headers.length;