rfe #1435032 [interface] Move SSL status to the end, it is usually empty.

This commit is contained in:
Michal Čihař
2010-01-21 14:20:28 +00:00
parent 65ea590395
commit a5b910f0c5
2 changed files with 4 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
+ rfe #1721189 [core] Force reload js on code change. + rfe #1721189 [core] Force reload js on code change.
+ rfe #1954161 [interface] Do not display long numbers in server status. + rfe #1954161 [interface] Do not display long numbers in server status.
+ rfe #2033616 [edit] Add option to just display insert query. + 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) 3.3.0.0 (not yet released)
+ rfe #2308632 [edit] Use hex for (var)binary fields, + rfe #2308632 [edit] Use hex for (var)binary fields,

View File

@@ -206,7 +206,6 @@ $allocations = array(
'Com_' => 'com', 'Com_' => 'com',
'Innodb_' => 'innodb', 'Innodb_' => 'innodb',
'Ndb_' => 'ndb', 'Ndb_' => 'ndb',
'Ssl_' => 'ssl',
'Handler_' => 'handler', 'Handler_' => 'handler',
'Qcache_' => 'qcache', 'Qcache_' => 'qcache',
'Threads_' => 'threads', 'Threads_' => 'threads',
@@ -234,6 +233,8 @@ $allocations = array(
'Slave_' => 'repl', 'Slave_' => 'repl',
'Tc_' => 'tc', 'Tc_' => 'tc',
'Ssl_' => 'ssl',
); );
$sections = array( $sections = array(
@@ -242,7 +243,6 @@ $sections = array(
'query' => array('title' => $strSQLQuery), 'query' => array('title' => $strSQLQuery),
'innodb' => array('title' => 'InnoDB'), 'innodb' => array('title' => 'InnoDB'),
'ndb' => array('title' => 'NDB'), 'ndb' => array('title' => 'NDB'),
'ssl' => array('title' => 'SSL'),
'handler' => array('title' => $strHandler), 'handler' => array('title' => $strHandler),
'qcache' => array('title' => $strQueryCache), 'qcache' => array('title' => $strQueryCache),
'threads' => array('title' => $strThreads), 'threads' => array('title' => $strThreads),
@@ -255,6 +255,7 @@ $sections = array(
'sort' => array('title' => $strSorting), 'sort' => array('title' => $strSorting),
'table' => array('title' => $strNumTables), 'table' => array('title' => $strNumTables),
'tc' => array('title' => $strTransactionCoordinator), 'tc' => array('title' => $strTransactionCoordinator),
'ssl' => array('title' => 'SSL'),
); );
/** /**