Merge pull request #1717 from devenbansod/701C

Removed an unnecessary cell in printview of query results
This commit is contained in:
Isaac Bennetch 2015-06-08 16:00:30 -04:00
commit 5d35950556

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);