From a5b910f0c55fd595312f243d49c50df9b60c5df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 21 Jan 2010 14:20:28 +0000 Subject: [PATCH] rfe #1435032 [interface] Move SSL status to the end, it is usually empty. --- ChangeLog | 1 + server_status.php | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d8052f39c..a5d43b0a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21,6 +21,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA + rfe #1721189 [core] Force reload js on code change. + rfe #1954161 [interface] Do not display long numbers in server status. + rfe #2033616 [edit] Add option to just display insert query. ++ rfe #1435032 [interface] Move SSL status to the end, it is usually empty. 3.3.0.0 (not yet released) + rfe #2308632 [edit] Use hex for (var)binary fields, diff --git a/server_status.php b/server_status.php index 82ec52da9..ec6083a19 100644 --- a/server_status.php +++ b/server_status.php @@ -206,7 +206,6 @@ $allocations = array( 'Com_' => 'com', 'Innodb_' => 'innodb', 'Ndb_' => 'ndb', - 'Ssl_' => 'ssl', 'Handler_' => 'handler', 'Qcache_' => 'qcache', 'Threads_' => 'threads', @@ -234,6 +233,8 @@ $allocations = array( 'Slave_' => 'repl', 'Tc_' => 'tc', + + 'Ssl_' => 'ssl', ); $sections = array( @@ -242,7 +243,6 @@ $sections = array( 'query' => array('title' => $strSQLQuery), 'innodb' => array('title' => 'InnoDB'), 'ndb' => array('title' => 'NDB'), - 'ssl' => array('title' => 'SSL'), 'handler' => array('title' => $strHandler), 'qcache' => array('title' => $strQueryCache), 'threads' => array('title' => $strThreads), @@ -255,6 +255,7 @@ $sections = array( 'sort' => array('title' => $strSorting), 'table' => array('title' => $strNumTables), 'tc' => array('title' => $strTransactionCoordinator), + 'ssl' => array('title' => 'SSL'), ); /**