patch #1726500 Wrong position of </tbody>

This commit is contained in:
Marc Delisle 2007-05-28 16:48:39 +00:00
parent ff08fdd633
commit f0dfa7b130
2 changed files with 3 additions and 2 deletions

View File

@ -14,13 +14,14 @@ $HeadURL$
- bug #1717339 Missing header when deleting a checked column,
thanks to Michael Keck
- bug #1717477 Warning on Query page when db is empty
- bug #1721002 db rename -> undefined cfgRelation, thanks to Juergen Wind
- bug #1721002 db rename -> undefined cfgRelation, thanks to Jürgen Wind
- bug #1721571 CREATE database privilege not always detected,
thanks to Gordon McNaughton
- bug #1715709 export in SQL format always includes procedures and functions
- bug #1722502 DROP TABLE in export view structure
- bug #1718787 Multi-server setup breaks Designer
- bug #1724401 Column truncation in repair table output
- patch #1726500 Wrong position of </tbody>, thanks to Jürgen Wind
2.10.1.0 (2007-04-23)
=====================

View File

@ -1829,12 +1829,12 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
$url_query='';
echo '<tbody>' . "\n";
PMA_displayTableBody($dt_result, $is_display, $map, $analyzed_sql);
echo '</tbody>' . "\n";
// vertical output case
if ($disp_direction == 'vertical') {
PMA_displayVerticalTable();
} // end if
unset($vertical_display);
echo '</tbody>' . "\n";
?>
</table>