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);