From 10867bb1fc5f07dbab735753a43995e24119d477 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Sat, 16 Apr 2011 21:23:24 +0200 Subject: [PATCH] fix column highlighting for cases where big T is not displayed (eg. in information_schema tables) --- js/sql.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/sql.js b/js/sql.js index 7a70af384..8a97eec3a 100644 --- a/js/sql.js +++ b/js/sql.js @@ -1058,8 +1058,11 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings, function PMA_changeClassForColumn($this_th, newclass) { // index 0 is the th containing the big T var th_index = $this_th.index(); + var has_big_t = !$this_th.closest('tr').children(':first').hasClass('column_heading'); // .eq() is zero-based - th_index--; + if (has_big_t) { + th_index--; + } var $tds = $this_th.closest('table').find('tbody tr').find('td.data:eq('+th_index+')'); if ($this_th.data('has_class_'+newclass)) { $tds.removeClass(newclass);