patch #1726500 Wrong position of </tbody>

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

View File

@@ -72,13 +72,14 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- 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

@@ -1913,12 +1913,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 ($_SESSION['userconf']['disp_direction'] == 'vertical') {
PMA_displayVerticalTable();
} // end if
unset($vertical_display);
echo '</tbody>' . "\n";
?>
</table>