diff --git a/ChangeLog b/ChangeLog index 9bb12bdd6..91fc6340b 100755 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,8 @@ $Source$ 2005-10-29 Marc Delisle * Documentation.html: clarification on FAQ 6.20 * server_privileges.php: respect the chosen initial + * libraries/display_tbl.lib.php: patch 1328902 (adapted), format row count + in the Browse header, thanks to Cal Henderson 2005-10-28 Sebastian Mendel * server_privilegs.php, libraries/common.lib.php, diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index aa3ba5650..01eddae17 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1767,7 +1767,7 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql) $last_shown_rec = ($GLOBALS['session_max_rows'] == 'all' || $pos_next > $total) ? $total - 1 : $pos_next - 1; - PMA_showMessage($GLOBALS['strShowingRecords'] . " $pos - $last_shown_rec ($total " . $GLOBALS['strTotal'] . $selectstring . ', ' . sprintf($GLOBALS['strQueryTime'], $GLOBALS['querytime']) . ')'); + PMA_showMessage($GLOBALS['strShowingRecords'] . " $pos - $last_shown_rec (" . PMA_formatNumber( $total, 0 ) . ' ' . $GLOBALS['strTotal'] . $selectstring . ', ' . sprintf($GLOBALS['strQueryTime'], $GLOBALS['querytime']) . ')'); } else if (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') { PMA_showMessage($GLOBALS['strSQLQuery']); }