RFE #550554 - execute bookmarks when browsing this table.

This commit is contained in:
Garvin Hicking
2003-03-12 21:23:36 +00:00
parent e6d1ae755a
commit 7eafab8a29
3 changed files with 25 additions and 7 deletions

View File

@@ -61,7 +61,7 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
$result = PMA_mysql_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db));
while ($tmp = PMA_mysql_fetch_array($result)) {
$tooltip_truename[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : '') : $tmp['Name']);
$tooltip_truename[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : $tmp['Name']) : $tmp['Name']);
$tooltip_aliasname[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? $tmp['Name'] : (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : ''));
} // end while
} // end if