Removed an unnecessary cell in printview.

Signed-off-by: Deven Bansod <devenbansod.bits@gmail.com>
This commit is contained in:
Deven Bansod 2015-06-08 03:59:31 +05:30
parent 00e27a6a7f
commit ee6cd74ea3

View File

@ -2479,7 +2479,7 @@ class PMA_DisplayResults
&& ($displayParts['del_lnk'] != self::NO_EDIT_OR_DELETE)) ? 4 : 1;
$right_column_html .= "\n"
. '<th class="column_action" ' . $colspan . '>'
. '<th class="column_action print_ignore" ' . $colspan . '>'
. $full_or_partial_text_link
. '</th>';
@ -2496,7 +2496,7 @@ class PMA_DisplayResults
= (($displayParts['edit_lnk'] != self::NO_EDIT_OR_DELETE)
&& ($displayParts['del_lnk'] != self::NO_EDIT_OR_DELETE)) ? 4 : 1;
$right_column_html .= "\n" . '<td ' . $colspan . '></td>';
$right_column_html .= "\n" . '<td class="print_ignore" ' . $colspan . '></td>';
}
$this->__set('display_params', $display_params);