alias table names have realnames when 'nested' tooltipmode is used

This commit is contained in:
Garvin Hicking
2004-05-07 13:08:51 +00:00
parent 370e80b838
commit 4b17e9f6a5
2 changed files with 5 additions and 2 deletions

View File

@@ -6,6 +6,9 @@ $Id$
$Source$
2004-05-07 Garvin Hicking <pma@supergarv.de>
* db_details_db_info.php: When $cfg['ShowTooltipAliasTB'] is set to
'nested', the displayed table names should always be the real names,
not the table comments.
* libraries/display_tbl.lib.php, libraries/display_tbl_links.lib.php,
librarries/functions.js: RFE #856208 - Show (un)check all boxes
for query results.

View File

@@ -10,8 +10,8 @@ require_once('./libraries/common.lib.php');
PMA_checkParameters(array('db'));
function fillTooltip(&$tooltip_truename, &$tooltip_aliasname, &$tmp) {
$tooltip_truename[$tmp['Name']] = ($GLOBALS['cfg']['ShowTooltipAliasTB'] ? (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : $tmp['Name']) : $tmp['Name']);
$tooltip_aliasname[$tmp['Name']] = ($GLOBALS['cfg']['ShowTooltipAliasTB'] ? $tmp['Name'] : (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : $tmp['Name']));
$tooltip_truename[$tmp['Name']] = ($GLOBALS['cfg']['ShowTooltipAliasTB'] && $GLOBALS['cfg']['ShowTooltipAliasTB'] != 'nested' ? (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : $tmp['Name']) : $tmp['Name']);
$tooltip_aliasname[$tmp['Name']] = ($GLOBALS['cfg']['ShowTooltipAliasTB'] && $GLOBALS['cfg']['ShowTooltipAliasTB'] != 'nested' ? $tmp['Name'] : (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : $tmp['Name']));
if (isset($tmp['Create_time']) && !empty($tmp['Create_time'])) {
$tooltip_aliasname[$tmp['Name']] .= ', ' . $GLOBALS['strStatCreateTime'] . ': ' . PMA_localisedDate(strtotime($tmp['Create_time']));
}