Clarify function names

This commit is contained in:
Marc Delisle 2012-04-30 14:05:13 -04:00
parent 21cc29403b
commit 2282e02a8a
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ $GLOBALS['script_display_field']
* retrieves table info and stores it in $GLOBALS['PMD']
*
*/
function get_tabs()
function get_tables_info()
{
$GLOBALS['PMD']['TABLE_NAME'] = array();// that foreach no error
$GLOBALS['PMD']['OWNER'] = array();
@ -72,7 +72,7 @@ function get_tabs()
*
* @return array table column nfo
*/
function get_tab_info()
function get_columns_info()
{
PMA_DBI_select_db($GLOBALS['db']);
$tab_column = array();
@ -241,5 +241,5 @@ function get_tab_pos()
return count($tab_pos) ? $tab_pos : null;
}
get_tabs();
get_tables_info();
?>

View File

@ -26,7 +26,7 @@ foreach ($get_params as $one_get_param) {
}
}
$tab_column = get_tab_info();
$tab_column = get_columns_info();
$script_tabs = get_script_tabs();
$script_contr = get_script_contr();
$tab_pos = get_tab_pos();