The branch, master has been updated
       via  d370730eff1b8e8e69369e54a51726a839058ba4 (commit)
      from  621d851c5f0dcf063af2120f8984773e580d7a84 (commit)


- Log -----------------------------------------------------------------
commit d370730eff1b8e8e69369e54a51726a839058ba4
Author: Dieter Adriaenssens <[email protected]>
Date:   Sat Dec 4 14:13:51 2010 +0100

    bug #3119874, Show integers without decimals on status page

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         |    1 +
 server_status.php |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 5a44159..55cbb7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -124,6 +124,7 @@
 - patch #3112792 [navi] Left panel table grouping incorrect,
   thanks to garas - garas
 - bug #3123433 [interface] Avoid double escaping of MySQL errors.
+- bug #3119874 [interface] Show integers without decimals on status page.
 
 3.3.9.0 (not yet released)
 - bug [doc] Fix references to MySQL doc
diff --git a/server_status.php b/server_status.php
index 520bb51..de68965 100644
--- a/server_status.php
+++ b/server_status.php
@@ -793,7 +793,7 @@ if (! empty($section['title'])) {
             if ('%' === substr($name, -1, 1)) {
                 echo PMA_formatNumber($value, 0, 2) . ' %';
             } elseif (is_numeric($value) && $value == (int) $value) {
-                echo PMA_formatNumber($value, 3, 1);
+                echo PMA_formatNumber($value, 4, 0);
             } elseif (is_numeric($value)) {
                 echo PMA_formatNumber($value, 3, 1);
             } else {


hooks/post-receive
-- 
phpMyAdmin

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
Phpmyadmin-git mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-git

Reply via email to