mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-23 00:31:28 +01:00
Default to id since registered doesn't have an index. see #15170
git-svn-id: http://svn.automattic.com/wordpress/trunk@16157 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
72c23453d1
commit
32e86e7d3e
@ -37,7 +37,7 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
|||||||
// to avoid expensive count queries.
|
// to avoid expensive count queries.
|
||||||
if ( !$s && ( get_blog_count() >= 10000 ) ) {
|
if ( !$s && ( get_blog_count() >= 10000 ) ) {
|
||||||
if ( !isset($_REQUEST['orderby']) )
|
if ( !isset($_REQUEST['orderby']) )
|
||||||
$_GET['orderby'] = $_REQUEST['orderby'] = 'registered';
|
$_GET['orderby'] = $_REQUEST['orderby'] = 'id';
|
||||||
if ( !isset($_REQUEST['order']) )
|
if ( !isset($_REQUEST['order']) )
|
||||||
$_GET['order'] = $_REQUEST['order'] = 'DESC';
|
$_GET['order'] = $_REQUEST['order'] = 'DESC';
|
||||||
$large_network = true;
|
$large_network = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user