move "Query results operations" lower

This commit is contained in:
Marc Delisle
2007-07-24 11:39:54 +00:00
parent 6be8cbdca1
commit 452c8645f3

View File

@@ -1879,9 +1879,7 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
$table = ''; $table = '';
} }
} }
if (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
PMA_displayResultsOperations($the_disp_mode, $analyzed_sql);
}
if ($is_display['nav_bar'] == '1') { if ($is_display['nav_bar'] == '1') {
PMA_displayTableNavigation($pos_next, $pos_prev, $sql_query); PMA_displayTableNavigation($pos_next, $pos_prev, $sql_query);
echo "\n"; echo "\n";
@@ -2008,6 +2006,11 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
} elseif (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') { } elseif (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
echo "\n" . '<br /><br />' . "\n"; echo "\n" . '<br /><br />' . "\n";
} }
// 6. ----- Displays "Query results operations"
if (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
PMA_displayResultsOperations($the_disp_mode, $analyzed_sql);
}
} // end of the 'PMA_displayTable()' function } // end of the 'PMA_displayTable()' function
function default_function($buffer) { function default_function($buffer) {