From 0ac7584d82ce747a2b75eac0478b09ececc4c511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 27 Jun 2005 16:29:09 +0000 Subject: [PATCH] Switch browse and properties tabs (RFE #1047874). --- ChangeLog | 1 + tbl_properties_links.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8a04ed23b..093970461 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,7 @@ $Source$ #1226666). * db_details_links.php: Place export tab on same place as on table page (RFE #1047874). + * tbl_properties_links.php: Switch browse and properties tabs (RFE #1047874). 2005-06-24 Michal Čihař * tbl_change.php, tbl_properties_links.php, libraries/export/sql.php: diff --git a/tbl_properties_links.php b/tbl_properties_links.php index 08efa8041..786dd4fd5 100644 --- a/tbl_properties_links.php +++ b/tbl_properties_links.php @@ -78,8 +78,8 @@ if ($cfg['LightTabs']) { . ' '; } -echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? ''.$strStructure.'' : '') . $strStructure, 'tbl_properties_structure.php', $url_query) - . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? ''.$strBrowse.'' : '') . $strBrowse, $lnk2, $arg2) +echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? ''.$strBrowse.'' : '') . $strBrowse, $lnk2, $arg2) + . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? ''.$strStructure.'' : '') . $strStructure, 'tbl_properties_structure.php', $url_query) . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? ''.$strSQL.'' : '') . $strSQL, 'tbl_properties.php', $url_query) . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? ''.$strSearch.'' : '') . $strSearch, $lnk4, $arg4) . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? ''.$strInsert.'' : '') . $strInsert, 'tbl_change.php', $url_query);