bug #1777620 Table Print preview: missing column header

This commit is contained in:
Marc Delisle
2007-09-05 10:49:52 +00:00
parent c8d0e3181e
commit d40e764886
2 changed files with 3 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #1780098 [GUI] Logout causes CSS loss, thanks to Juergen Wind - bug #1780098 [GUI] Logout causes CSS loss, thanks to Juergen Wind
. incorrect field ids, thanks to Michael Keck . incorrect field ids, thanks to Michael Keck
- bug #1787522 [view] wrong choice in algorithm drop-down - bug #1787522 [view] wrong choice in algorithm drop-down
- bug #1777620 [GUI] Table Print preview: missing column header,
thanks to Mario Rohkrämer
2.11.0.0 (2007-08-21) 2.11.0.0 (2007-08-21)

View File

@@ -170,7 +170,7 @@ foreach ($the_tables as $key => $table) {
if ($have_rel) { if ($have_rel) {
echo '<th>' . $strLinksTo . '</th>' . "\n"; echo '<th>' . $strLinksTo . '</th>' . "\n";
} }
if ($cfgRelation['commwork']) { if ($cfgRelation['commwork'] || PMA_MYSQL_INT_VERSION >= 40100) {
echo ' <th>' . $strComments . '</th>' . "\n"; echo ' <th>' . $strComments . '</th>' . "\n";
} }
if ($cfgRelation['mimework']) { if ($cfgRelation['mimework']) {