Make 'registered' column sort by site id. See #14579

git-svn-id: http://svn.automattic.com/wordpress/trunk@16289 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
scribu 2010-11-11 11:45:32 +00:00
parent 0027abcb1a
commit 456b6cf6ed
1 changed files with 1 additions and 2 deletions

View File

@ -151,10 +151,9 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
function get_sortable_columns() {
return array(
'id' => 'id',
'blogname' => 'blogname',
'lastupdated' => 'lastupdated',
'registered' => 'registered',
'registered' => 'id',
);
}